Advertisement
Guest User

Roblox Tower Battles exploit

a guest
Oct 23rd, 2017
14,812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. [ALL CREDITS TO THE OWNER, I DID NOT MAKE THIS SCRIPT]
  2. https://v3rmillion.net/showthread.php?tid=358518&page=1
  3. For those that don't have V3rmillion:
  4.  
  5. Credits:
  6. CreditsToGive = 3000
  7. workspace.Give:InvokeServer('Credits',CreditsToGive)
  8.  
  9. Free Upgrades:
  10. local ws = workspace
  11. local plr = game:GetService('Players').LocalPlayer
  12. for i,v in pairs(ws.Towers:GetChildren()) do
  13. if v.Owner.Value == plr and v.Tower.UP1.Value < 4 then
  14. repeat
  15. workspace.HasEnough:InvokeServer('Cash',0)
  16. workspace.Spend:InvokeServer(0)
  17. workspace.UpgradeTower:InvokeServer(v.Name,0)
  18. until v.Tower.UP1.Value >= 4
  19. end
  20. end
  21.  
  22. Zombie Spawn:
  23. local ws = workspace
  24. local plr = game:GetService('Players').LocalPlayer
  25. local uts = 'Boss2' --Don't spell it wrong. This is the enemy that you want to send.
  26. -- The boss names are Boss1, Boss2, and Boss3
  27. local ns = 20 --How many of that enemy you want to send
  28. local cd = 0 --cooldown between each enemy spawn. not many people would want to change this.
  29. for i=1,ns do
  30. workspace.HasEnough:InvokeServer('Cash',0)
  31. workspace.Spend:InvokeServer(0)
  32. workspace.Make:InvokeServer(uts,1,cd)
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement