Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Unlimited crates -
- local meme = "Regular Crate"
- local price = 0
- local quantity = 999999999
- local Event = game:GetService("ReplicatedStorage").PurchaseCrate
- Event:FireServer(meme,price,quantity)
- Unlimited crystals-
- -- Crystals
- local amount = 99999999999
- game.ReplicatedStorage.UpdateCrystals:FireServer(amount)
- Delete peoples plots-
- local localplayerDelete = true
- local a = game:GetService("Players"):GetPlayers()
- local Event = game:GetService("ReplicatedStorage").DeleteItem
- for i,v in next, a do
- if(localplayerDelete == true) then
- for _,x in next, workspace.factories[v.Name].Items:GetChildren() do
- Event:FireServer(x)
- end
- elseif(v.Name ~= game:GetService("Players").LocalPlayer.Name and localplayerDelete == false) then
- for _,x in next, workspace.factories[v.Name].Items:GetChildren() do
- Event:FireServer(x)
- end
- end
- end
Add Comment
Please, Sign In to add comment