Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Created by SpeedSterMaster --
- -- Check me out on YouTube: SpeedSterMaster --
- -- Script came From Roblox Studio --
- -- June 4, 2020 --
- -- Is it Always Dark in Games? --
- -- Today we are creating a Cash per Second Script --
- -- Feel Free to Cuztomize the Script and it Works for Any Game with currencies --
- -- here is the Script: This is mainly used for roblox exploits like jjsploit and synapse X
- game.Players.PlayerAdded:connect(function(p)
- local stats = Instance.new("IntValue", p)
- stats.Name = "leaderstats"
- local money = Instance.new("IntValue", stats)
- money.Name = "Cash" -- Currency Name
- money.Value = 100
- while true do
- wait(5) -- Seconds until you get cash.
- money.Value = money.Value + 10 -- How Much Cash you Get
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement