Advertisement
SlyHades66

The Plaza Leaks

Jun 21st, 2016
884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.38 KB | None | 0 0
  1. --Spam Bot
  2. local message = "Spammm"
  3. while wait(0) do
  4.     game.ReplicatedStorage.ServerStats.CustomChat.ChattedIn:FireServer(message, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  5. end
  6.  
  7. --Semi-SpamBot
  8. local message = "Spammm"
  9. local amount = 100
  10. for i = 1, amount do
  11. wait(0.03)
  12. game.ReplicatedStorage.ServerStats.CustomChat.ChattedIn:FireServer(message, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  13. end
  14.  
  15. --Give Money
  16. local amount = 21e8
  17. game.ReplicatedStorage.ServerStats.ChangeMoney:FireServer(amount, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  18.  
  19. --Give Pets
  20. local pet = "Lab Doge"
  21. game.ReplicatedStorage.ServerStats.BuyPet:FireServer(pet, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  22.  
  23. --Give Vehicle
  24. local car = "Monotracer"
  25. game.ReplicatedStorage.ServerStats.BuyVehicle:FireServer(car, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  26.  
  27. --Change Anyones Stereo
  28. local song = 266828640
  29. local playerchanging = "Scapters"
  30. game.ReplicatedStorage.PlayerStats[playerchanging].CondoSongID.Value = "http://www.roblox.com/asset/?id="..song
  31. wait(0.03)
  32. game.ReplicatedStorage.PlayerStats[playerchanging].CondoSongChange:FireServer(math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement