my scirpt is
local playerr = game.Players.LocalPlayer local Money = playerr:WaitForChild("leaderstats").Money while true do Money.Value = Money.Value +12323 end
Make sure you add wait(-- number here --) while you are using while true do. else it adds the number infinitely without waiting.
try this out :
1 | local playerr = game.Players.LocalPlayer |
2 | local Money = playerr:WaitForChild( "leaderstats" ).Money |
3 | while true do |
4 | wait() |
5 | Money.Value = Money.Value + 12323 |
6 | end |