Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local PlayerName = tostring(game.Players.LocalPlayer.Name)
- local tycoons = game.Workspace.Tycoons
- for i, v in pairs (tycoons:GetChildren()) do
- if v:IsA("Model") and v.OwnerName.Value == PlayerName then
- v["Cash to collect : 0"].Money.Value = math.huge
- end
- end
- Weapon Script:local lighting = game.Lighting
- for i, v in pairs (lighting:GetChildren()) do
- if v:IsA("Tool") then
- local clone = v:Clone()
- clone.Parent = game.Players.LocalPlayer.Backpack
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement