Advertisement
Guest User

2Plr GUn Factory Tycoon

a guest
Mar 30th, 2019
2,747
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local PlayerName = tostring(game.Players.LocalPlayer.Name)
  2. local tycoons = game.Workspace.Tycoons
  3.  
  4. for i, v in pairs (tycoons:GetChildren()) do
  5. if v:IsA("Model") and v.OwnerName.Value == PlayerName then
  6. v["Cash to collect : 0"].Money.Value = math.huge
  7. end
  8. end
  9. Weapon Script:local lighting = game.Lighting
  10.  
  11. for i, v in pairs (lighting:GetChildren()) do
  12. if v:IsA("Tool") then
  13. local clone = v:Clone()
  14. clone.Parent = game.Players.LocalPlayer.Backpack
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement