Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make cash giver button keep giving cash until the player stops touching?

Asked by 5 years ago

Trying to make a cash giving button that fires an event for the duration of time the player/npc is touching the part. so say a button is supposed to give 100 cash a second and a player stands on the button for 10 seconds they are supposed to get 1000 cash but only get 300-500 depending on how many times the player touched the button walking into in. how do i keep a function firing until the player/npc stops touching the part?

01script.Parent.Touched:Connect(function(hit)
02    if hit.Parent:FindFirstChildOfClass("Humanoid") then
03        local npc = hit.Parent
04        local maxWood = npc.Configuration.MaxWood
05        local wood = npc.Configuration.Wood
06        while wood.Value < maxWood.Value do
07            wood.Value = wood.Value +1
08            wait(2)
09            return
10 
11 
12        end
13        end
14    end)
0
Instead of using a touched event, use region3 to check if a player is in a certain space in the workspace. It's much more reliable for what you're doing. AbusedCocopuff4 105 — 5y
0
hi, someone moderated your question about the coins. to answer your question, you should be using a local script instead of a normal scripts. this will make the coin be visible/invisible locally. royaltoe 5144 — 5y
0
a local script wouldn't work with the npc which is the idea behind the question as the npc is server side not client WaterlooBuilder 4 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
01local touching = false
02local npc
03 
04script.Parent.Touched:Connect(function(hit)
05    if hit.Parent:FindFirstChildOfClass("Humanoid") then
06    touching = true --Tells the game they are touching it using a boolean
07    npc = hit.Parent
08        end
09    end)
10 
11script.Parent.TouchedEnded:Connect(function(hit)
12    if hit.Parent:FindFirstChildOfClass("Humanoid") then
13    touching = false--Tells the game they are NOT touching it using a boolean
14 
15        end
View all 25 lines...

Hope this works!

0
You missed an end, in the last part Spjureeedd 385 — 5y
0
Syntax error on line 18 DeceptiveCaster 3761 — 5y
0
no error after fixing the end and == issue but the value is not increasing WaterlooBuilder 4 — 5y
Ad

Answer this question