Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.PlayerAdded:Connect(function(plr)
- local leader = Instance.new("BoolValue",plr)
- leader.Name = "leaderstats"
- local cash = Instance.new("IntValue",leader)
- Cash.Name = "Cash"
- game.ServerStorage.Give.Event:Connect(function(Amount)
- Cash.Value = Cash.Value + Amount
- end)
- end)
Add Comment
Please, Sign In to add comment