Advertisement
Skelemations_1

Super Power Fighting Simulator TP 25Qi Psychic Autofarm

Jul 28th, 2020 (edited)
882
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.33 KB | None | 0 0
  1. -- Made by Skelemations 1
  2. -- Remember to look inside f9 to see when it stops
  3. -- Game: https://roblox.com/games/2619187362/NINJA-Super-Power-Fighting-Simulator
  4.  
  5. -- Auto Psychic
  6. while true do
  7. wait(0.000000000000000001)
  8. game.ReplicatedStorage.Events.Train:FireServer("Psychic")
  9. end
  10. -- GUI
  11. local ScreenGui = Instance.new("ScreenGui")
  12. local main = Instance.new("Frame")
  13. local teleport = Instance.new("TextButton")
  14. local stop = Instance.new("TextButton")
  15. local stopnowpls = false
  16.  
  17. print("Script Loaded!\nMake sure every time you run this script to check inside Dev Console! (f9)\nVersion 1.0\nCongrats! You are a BETA Tester for this script!")
  18.  
  19. ScreenGui.Parent = game.CoreGui
  20. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. main.Name = "main"
  23. main.Parent = ScreenGui
  24. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  25. main.Position = UDim2.new(0.168997675, 0, 0.455080986, 0)
  26. main.Size = UDim2.new(0, 248, 0, 162)
  27. main.Draggable = true
  28.  
  29. teleport.Name = "teleport"
  30. teleport.Parent = main
  31. teleport.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. teleport.Position = UDim2.new(0, 0, 0.104938269, 0)
  33. teleport.Size = UDim2.new(0, 125, 0, 145)
  34. teleport.Font = Enum.Font.GothamSemibold
  35. teleport.Text = "TP 25QI Psychic"
  36. teleport.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. teleport.TextScaled = true
  38. teleport.TextSize = 45.000
  39. teleport.TextWrapped = true
  40. teleport.MouseButton1Down:connect(function()
  41.     while true do
  42.         local target = CFrame.new(1005.6217, 213.931229, 858.336121)
  43.         for i, player in ipairs(game.Players:GetChildren()) do
  44.         if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  45.             player.Character.HumanoidRootPart.CFrame = target + Vector3.new(0, i * 5, 0)
  46.         end
  47.         end
  48.         wait(5)
  49.    
  50.         if stopnowpls == true then
  51.             break
  52.         end
  53.     end
  54.    
  55.     print("ello mate ur stupid autofarm done okay")
  56. end)
  57.  
  58. stop.Name = "stop"
  59. stop.Parent = main
  60. stop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  61. stop.Position = UDim2.new(0.504032254, 0, 0.104938269, 0)
  62. stop.Size = UDim2.new(0, 123, 0, 145)
  63. stop.Font = Enum.Font.GothamSemibold
  64. stop.Text = "Stop TP"
  65. stop.TextColor3 = Color3.fromRGB(0, 0, 0)
  66. stop.TextSize = 45.000
  67. stop.TextWrapped = true
  68. stop.MouseButton1Down:connect(function()
  69.     stopnowpls = true
  70. end)
  71. -- End of script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement