Advertisement
Guest User

Sword Fighting Tournament - Superskater911

a guest
May 25th, 2018
1,054
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. Infinite Points (Replace PLAYER with any user including yourself in server) execute multiple times for quicker
  2. Code:
  3. for i = 1, 50 do
  4. game.ReplicatedStorage.ChangeOtherAtributeBy:InvokeServer("PLAYER", "Points", 3999)
  5. end
  6.  
  7. Infinite Wins (Replace PLAYER with any user including yourself in server) execute multiple times for quicker
  8. Code:
  9. for i = 1, 50 do
  10. game.ReplicatedStorage.ChangeOtherAtributeBy:InvokeServer("PLAYER", "Wins", 2)
  11. end
  12.  
  13. Remove Mesh [aka box sword] must have sword equipped while executing (Works in some other games too!)
  14. Code:
  15. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Handle.Mesh:remove()
  16.  
  17. Reach (hit players from farrrr away) must execute while not having sword equipped (Works in other games too!)
  18. Code:
  19. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  20. if v:isA("Tool") then
  21. a=Instance.new("SelectionBox",v.Handle)
  22. a.Adornee=v.Handle
  23. v.Handle.Size=Vector3.new(0.5,0.5,60)
  24. v.GripPos=Vector3.new(0,0,0)
  25. end
  26. end
  27.  
  28. Gives yourself Venomshank
  29. Code:
  30. game.ReplicatedStorage.GiveSword:InvokeServer("Venomshank", game.Players.LocalPlayer)
  31. Gives yourself Darkheart
  32. Code:
  33. game.ReplicatedStorage.GiveSword:InvokeServer("Darkheart", game.Players.LocalPlayer)
  34. Gives yourself Illumina
  35. Code:
  36. game.ReplicatedStorage.GiveSword:InvokeServer("Illumina", game.Players.LocalPlayer)
  37. Gives yourself Ghostwalker
  38. Code:
  39. game.ReplicatedStorage.GiveSword:InvokeServer("Ghostwalker", game.Players.LocalPlayer)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement