How to make cash giver button keep giving cash until the player stops touching?
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?
01 | script.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 |