Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by Skelemations 1
- -- Remember to look inside f9 to see when it stops
- -- Game: https://roblox.com/games/2619187362/NINJA-Super-Power-Fighting-Simulator
- -- Auto Psychic
- while true do
- wait(0.000000000000000001)
- game.ReplicatedStorage.Events.Train:FireServer("Psychic")
- end
- -- GUI
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local teleport = Instance.new("TextButton")
- local stop = Instance.new("TextButton")
- local stopnowpls = false
- 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!")
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- main.Position = UDim2.new(0.168997675, 0, 0.455080986, 0)
- main.Size = UDim2.new(0, 248, 0, 162)
- main.Draggable = true
- teleport.Name = "teleport"
- teleport.Parent = main
- teleport.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- teleport.Position = UDim2.new(0, 0, 0.104938269, 0)
- teleport.Size = UDim2.new(0, 125, 0, 145)
- teleport.Font = Enum.Font.GothamSemibold
- teleport.Text = "TP 25QI Psychic"
- teleport.TextColor3 = Color3.fromRGB(0, 0, 0)
- teleport.TextScaled = true
- teleport.TextSize = 45.000
- teleport.TextWrapped = true
- teleport.MouseButton1Down:connect(function()
- while true do
- local target = CFrame.new(1005.6217, 213.931229, 858.336121)
- for i, player in ipairs(game.Players:GetChildren()) do
- if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
- player.Character.HumanoidRootPart.CFrame = target + Vector3.new(0, i * 5, 0)
- end
- end
- wait(5)
- if stopnowpls == true then
- break
- end
- end
- print("ello mate ur stupid autofarm done okay")
- end)
- stop.Name = "stop"
- stop.Parent = main
- stop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- stop.Position = UDim2.new(0.504032254, 0, 0.104938269, 0)
- stop.Size = UDim2.new(0, 123, 0, 145)
- stop.Font = Enum.Font.GothamSemibold
- stop.Text = "Stop TP"
- stop.TextColor3 = Color3.fromRGB(0, 0, 0)
- stop.TextSize = 45.000
- stop.TextWrapped = true
- stop.MouseButton1Down:connect(function()
- stopnowpls = true
- end)
- -- End of script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement