A22asinJoin Date: 2011-07-04 Post Count: 313 |
hiya, i was wondering how can i make it so that any player who plays on my map earns cash by killing zombies? i have the leaderboard and the shop, but i dont know how to make it so that a player earns money ($50) per zombie killed. plz be specific cuz im new to programing and roblox. THXS ALLL!!!!!!! OH AND I TRIED THE FREE MODELS, NON WORK SO NO COMMENTS ON THAT PLZ. |
|
|
|
There are scripts you put into zombies that do that. BUT if the tools you are using don't have a 'tag' 'system' so to speak, it won't work. |
|
A22asinJoin Date: 2011-07-04 Post Count: 313 |
what is the tag system? and what do u mean by "no request"? i got the leaderboard (shopr script from free models) |
|
|
The tags are something called 'creator tags' used by guns to give you KOs in both, the leaderstats and the status in your profile. If your guns have no 'tagging' then its really hard to get Money by killing zombies. Try killing one of your friends and see if you get a KO, if you do, I'll give you the script.
As for the no request, its a movement some people take ... very seriously? Around here, if I were you I would ignore them most of the time, but try not to spam, yes? :P Basically, don't ask us to do stuff for you, we fix scripts and answer questions related to programming/scripting, but we don't script for you... Well, they don't. :P |
|
|
@EA
It's cuz were lazy n mean |
|
|
I know. :P I said I don't agree with it, but I never said no one should do it. Its ok to defend your rights, but when they request you don't have the obligation to help. I rather not post than post "No requests." and spam/get posts/start a flame war (though I love flame wars :D). |
|
A22asinJoin Date: 2011-07-04 Post Count: 313 |
ok, thx i finally got it!!!! |
|
|
I need the very same script can someone give one to me
|
|
|
can u send me the script to i have the same problem |
|
|
yeah I got that problem too, lol we all need one |
|
|
I
IH
IHA
IHAV
IHAVENO IDEA |
|
|
I have a game I'm working on with roblox. .it's beta atm but when I kill the zombie it doesn't give me a ko |
|
|
1 Tip to take things at free models.
Make sure it's from the same creator and everything you need is in one package.
Though you can take from different creator. Take care by yourself then. |
|
|
Edit your sword/weapon script:
ZombieName = "Zombie"
player = game.Players:GetPlayerFromCharacter(hit.Parent)
if hit.Parent.Name == ZombieName then
if player.leaderstats then
if player.leaderstats.Cash then
player.leaderstats.Cash = player.leaderstats.Cash + 100
end
end |
|
|
Edit yourself that if the zombies health is 0 add cash |
|
|
diddims
Is there a way for the script you made there to replace zombies as normal players? |
|
SigmaTechJoin Date: 2010-01-28 Post Count: 643 |
I'm up for debugging, not requests. |
|
|
if hit.Parent:IsA("Character") then
--code
end |
|
boy28812Join Date: 2012-09-02 Post Count: 7 |
doesn't work |
|