Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local label = Instance.new("TextLabel")
- local noclip = Instance.new("TextButton")
- local invis = Instance.new("TextButton")
- local fly = Instance.new("TextButton")
- local infjump = Instance.new("TextButton")
- local InvisFling = Instance.new("TextButton")
- local label2 = Instance.new("TextLabel")
- local Hi = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
- main.BorderColor3 = Color3.fromRGB(255, 255, 255)
- main.BorderSizePixel = 3
- main.Position = UDim2.new(0.619475663, 0, 0.656019628, 0)
- main.Size = UDim2.new(0, 484, 0, 256)
- main.Active = true
- main.Draggable = true
- label.Name = "label"
- label.Parent = main
- label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- label.BackgroundTransparency = 1.000
- label.Position = UDim2.new(0.0816211551, 0, 0.0419681072, 0)
- label.Size = UDim2.new(0, 404, 0, 24)
- label.Font = Enum.Font.Ubuntu
- label.Text = "Admin Hub (Alpha) | Made by PoweringCorupti0n"
- label.TextColor3 = Color3.fromRGB(255, 255, 255)
- label.TextScaled = true
- label.TextSize = 7.000
- label.TextWrapped = true
- noclip.Name = "noclip"
- noclip.Parent = main
- noclip.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- noclip.Position = UDim2.new(0.0245884657, 0, 0.153839111, 0)
- noclip.Size = UDim2.new(0, 106, 0, 28)
- noclip.Font = Enum.Font.SourceSans
- noclip.Text = "No-Clip"
- noclip.TextColor3 = Color3.fromRGB(255, 255, 255)
- noclip.TextSize = 14.000
- noclip.MouseButton1Down:connect(function()
- noclip = false
- game:GetService('RunService').Stepped:connect(function()
- if noclip then
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- plr = game.Players.LocalPlayer
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "e" then
- noclip = not noclip
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- print('Loaded')
- print('Press "E" to noclip')
- invis.Name = "invis"
- invis.Parent = main
- invis.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- invis.Position = UDim2.new(0.284919053, 0, 0.153839111, 0)
- invis.Size = UDim2.new(0, 106, 0, 28)
- invis.Font = Enum.Font.SourceSans
- invis.Text = "Invis"
- invis.TextColor3 = Color3.fromRGB(255, 255, 255)
- invis.TextSize = 14.000
- invis.MouseButton1Down:connect(function()
- Local = game:GetService('Players').LocalPlayer
- Char = Local.Character
- touched,tpdback = false, false
- Local.CharacterAdded:connect(function(char)
- if script.Disabled ~= true then
- wait(.25)
- loc = Char.HumanoidRootPart.Position
- Char:MoveTo(box.Position + Vector3.new(0,.5,0))
- end
- end)
- game:GetService('UserInputService').InputBegan:connect(function(key)
- if key.KeyCode == Enum.KeyCode.Equals then
- if script.Disabled ~= true then
- script.Disabled = true
- print'you may re-execute'
- end
- end
- end)
- box = Instance.new('Part',workspace)
- box.Anchored = true
- box.CanCollide = true
- box.Size = Vector3.new(10,1,10)
- box.Position = Vector3.new(0,10000,0)
- box.Touched:connect(function(part)
- if (part.Parent.Name == Local.Name) then
- if touched == false then
- touched = true
- function apply()
- if script.Disabled ~= true then
- no = Char.HumanoidRootPart:Clone()
- wait(.25)
- Char.HumanoidRootPart:Destroy()
- no.Parent = Char
- Char:MoveTo(loc)
- touched = false
- end end
- if Char then
- apply()
- end
- end
- end
- end)
- repeat wait() until Char
- loc = Char.HumanoidRootPart.Position
- Char:MoveTo(box.Position + Vector3.new(0,.5,0))
- end)
- fly.Name = "fly"
- fly.Parent = main
- fly.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- fly.Position = UDim2.new(0.547315776, 0, 0.153839111, 0)
- fly.Size = UDim2.new(0, 106, 0, 28)
- fly.Font = Enum.Font.SourceSans
- fly.Text = "Fly"
- fly.TextColor3 = Color3.fromRGB(255, 255, 255)
- fly.TextSize = 14.000
- fly.MouseButton1Down:connect(function()
- wait();
- local MaxFlySpeed = 2 -- change this as needed
- local UIS = game:GetService("UserInputService")
- local LocalPlayer = game:GetService("Players").LocalPlayer
- local Torso = (LocalPlayer.Character and LocalPlayer.Character:WaitForChild("Torso"))
- local Mouse = LocalPlayer:GetMouse()
- local Tool = Instance.new("Tool")
- Tool.RequiresHandle = false
- Tool.Name = "Fly tool"
- assert(Torso.ClassName == "Part", "Yikes! Torso is not a part.")
- local ToolUtils do
- ToolUtils = {
- --// Setup Vars
- Enabled = false,
- WindowFocused = true,
- Keys = {},
- InternalVars = {
- FlyForward = 0,
- FlyBackward = 0
- }
- }
- end
- local ToolEvents do
- Tool.Equipped:connect(function(Mouse)
- ToolUtils.Enabled = true
- Torso.Anchored = true
- end)
- Tool.Unequipped:connect(function(...)
- ToolUtils.Enabled = false
- Torso.Anchored = false
- end)
- UIS.InputBegan:connect(function(input, processedEvent)
- ToolUtils.Keys[input.KeyCode] = true
- end)
- UIS.InputEnded:connect(function(input, processedEvent)
- ToolUtils.Keys[input.KeyCode] = nil
- end)
- UIS.WindowFocusReleased:connect(function()
- ToolUtils.WindowFocused = false
- end)
- UIS.WindowFocused:connect(function()
- ToolUtils.WindowFocused = true
- end)
- end
- --// Main Event
- game:GetService("RunService").RenderStepped:connect(function(...)
- if ToolUtils.WindowFocused and ToolUtils.Enabled then
- if ToolUtils.Keys[Enum.KeyCode.W] then
- if ToolUtils.InternalVars.FlyForward < MaxFlySpeed then
- ToolUtils.InternalVars.FlyForward = ToolUtils.InternalVars.FlyForward + 0.1
- end
- else
- ToolUtils.InternalVars.FlyForward = ToolUtils.InternalVars.FlyForward * 0.9
- end
- if ToolUtils.Keys[Enum.KeyCode.S] then
- if ToolUtils.InternalVars.FlyBackward < MaxFlySpeed then
- ToolUtils.InternalVars.FlyBackward = ToolUtils.InternalVars.FlyBackward + 0.1
- end
- else
- ToolUtils.InternalVars.FlyBackward = ToolUtils.InternalVars.FlyBackward * 0.9
- end
- local Camera = workspace.CurrentCamera
- Torso.CFrame = Torso.CFrame:lerp(
- CFrame.new(Torso.Position, Camera.CFrame.p)
- * CFrame.Angles(0, math.rad(180), 0)
- * CFrame.new(0, 0, -(ToolUtils.InternalVars.FlyForward - ToolUtils.InternalVars.FlyBackward))
- * CFrame.Angles(-(math.rad(10 * (ToolUtils.InternalVars.FlyForward / MaxFlySpeed)) - math.rad(10 * (ToolUtils.InternalVars.FlyBackward / MaxFlySpeed))), 0, 0)
- , 0.9)
- end
- end)
- Tool.Parent = LocalPlayer:findFirstChild("Backpack") or Instance.new("Backpack", LocalPlayer)
- end)
- infjump.Name = "infjump"
- infjump.Parent = main
- infjump.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- infjump.Position = UDim2.new(0.0245885253, 0, 0.321807861, 0)
- infjump.Size = UDim2.new(0, 106, 0, 28)
- infjump.Font = Enum.Font.SourceSans
- infjump.Text = "Inf-Jump"
- infjump.TextColor3 = Color3.fromRGB(255, 255, 255)
- infjump.TextSize = 14.000
- infjump.MouseButton1Down:connect(function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
- InfiniteJump.Position = UDim2.new(0,10,0,130)
- InfiniteJump.Size = UDim2.new(0,150,0,30)
- InfiniteJump.MouseButton1Click:connect(function()
- local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
- local new = state == "Off" and "On" or state == "On" and "Off"
- InfiniteJumpEnabled = new == "On"
- InfiniteJump.Text = "Infinite Jump: " .. new
- end)
- end)
- InvisFling.Name = "InvisFling"
- InvisFling.Parent = main
- InvisFling.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- InvisFling.Position = UDim2.new(0.284919053, 0, 0.313995361, 0)
- InvisFling.Size = UDim2.new(0, 106, 0, 28)
- InvisFling.Font = Enum.Font.SourceSans
- InvisFling.Text = "InvisFling"
- InvisFling.TextColor3 = Color3.fromRGB(255, 255, 255)
- InvisFling.TextSize = 14.000
- InvisFling.MouseButton1Down:connect(function()
- spawn(function()
- local message = Instance.new("Message",workspace)
- message.Text = "Loaded press z to execute inviseble , press x to respawn)"
- wait(0.5)
- message:Destroy()
- end)
- local mouse = game.Players.LocalPlayer:GetMouse()
- local groot = nil
- mouse.KeyDown:connect(function(k)
- if k == "z" then
- spawn(function()
- local message = Instance.new("Message",workspace)
- message.Text = "Fe Invisible Fling By Diemiers#4209 Loaded (wait 11 seconds to load)"
- wait(11)
- message:Destroy()
- end)
- local ch = game.Players.LocalPlayer.Character
- local prt=Instance.new("Model", workspace)
- local z1 = Instance.new("Part", prt)
- z1.Name="Torso"
- z1.CanCollide = false
- z1.Anchored = true
- local z2 =Instance.new("Part", prt)
- z2.Name="Head"
- z2.Anchored = true
- z2.CanCollide = false
- local z3 =Instance.new("Humanoid", prt)
- z3.Name="Humanoid"
- z1.Position = Vector3.new(0,9999,0)
- z2.Position = Vector3.new(0,9991,0)
- game.Players.LocalPlayer.Character=prt
- wait(5)
- game.Players.LocalPlayer.Character=ch
- wait(6)
- local plr = game.Players.LocalPlayer
- mouse = plr:GetMouse()
- local Hum = Instance.new("Humanoid")
- Hum.Parent = game.Players.LocalPlayer.Character
- local root = game.Players.LocalPlayer.Character.HumanoidRootPart
- for i,v in pairs(plr.Character:GetChildren()) do
- if v ~= root and v.Name ~= "Humanoid" then
- v:Destroy()
- end
- end
- workspace.CurrentCamera.CameraSubject = root
- local se = Instance.new("SelectionBox",root)
- se.Adornee = root
- game:GetService('RunService').Stepped:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
- end)
- game:GetService('RunService').RenderStepped:connect(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
- end)
- power = 999999 -- change this to make it more or less powerful
- power = power*10
- ---
- wait(.1)
- local bambam = Instance.new("BodyThrust")
- bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
- bambam.Force = Vector3.new(power,0,power)
- bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
- local plr = game.Players.LocalPlayer
- local torso = root
- local flying = true
- local deb = true
- local ctrl = {f = 0, b = 0, l = 0, r = 0}
- local lastctrl = {f = 0, b = 0, l = 0, r = 0}
- local maxspeed = 120
- local speed = 15
- ---local bambam = Instance.new("BodyThrust")
- ---bambam.Parent = torso
- --bambam.Force = Vector3.new(9999999,0,9999999)
- --bambam.Location = torso.Position
- ---
- groot = root
- function Fly()
- local bg = Instance.new("BodyGyro", torso)
- bg.P = 9e4
- bg.maxTorque = Vector3.new(0, 0, 0)
- bg.cframe = torso.CFrame
- local bv = Instance.new("BodyVelocity", torso)
- bv.velocity = Vector3.new(0,0,0)
- bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
- repeat wait()
- if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
- speed = speed+.2
- if speed > maxspeed then
- speed = maxspeed
- end
- elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
- speed = speed-1
- if speed < 0 then
- speed = 0
- end
- end
- if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
- elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- until not flying
- ctrl = {f = 0, b = 0, l = 0, r = 0}
- lastctrl = {f = 0, b = 0, l = 0, r = 0}
- speed = 0
- bg:Destroy()
- bv:Destroy()
- end
- mouse.KeyDown:connect(function(key)
- if key:lower() == "e" then
- if flying then flying = false
- else
- flying = true
- Fly()
- end
- elseif key:lower() == "w" then
- ctrl.f = 1
- elseif key:lower() == "s" then
- ctrl.b = -1
- elseif key:lower() == "a" then
- ctrl.l = -1
- elseif key:lower() == "d" then
- ctrl.r = 1
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 0
- elseif key:lower() == "s" then
- ctrl.b = 0
- elseif key:lower() == "a" then
- ctrl.l = 0
- elseif key:lower() == "d" then
- ctrl.r = 0
- elseif key:lower() == "r" then
- end
- end)
- Fly()
- elseif k == "x" then
- spawn(function()
- local message = Instance.new("Message",workspace)
- message.Text = "Respawning dont spam"
- wait(1)
- message:Destroy()
- end)
- local saved = groot.Position
- local ch = game.Players.LocalPlayer.Character
- local prt=Instance.new("Model", workspace)
- local z1 = Instance.new("Part", prt)
- z1.Name="Torso"
- z1.CanCollide = false
- z1.Anchored = true
- local z2 =Instance.new("Part", prt)
- z2.Name="Head"
- z2.Anchored = true
- z2.CanCollide = false
- local z3 =Instance.new("Humanoid", prt)
- z3.Name="Humanoid"
- z1.Position = Vector3.new(0,9999,0)
- z2.Position = Vector3.new(0,9991,0)
- game.Players.LocalPlayer.Character=prt
- wait(5)
- game.Players.LocalPlayer.Character=ch
- local poop = nil
- repeat wait() poop = game.Players.LocalPlayer.Character:FindFirstChild("Head") until poop ~= nil
- wait(1)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(saved)
- end
- end)
- end)
- label2.Name = "label2"
- label2.Parent = main
- label2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- label2.BackgroundTransparency = 1.000
- label2.Position = UDim2.new(0.114645965, 0, 0.787209272, 0)
- label2.Size = UDim2.new(0, 369, 0, 50)
- label2.Font = Enum.Font.SourceSans
- label2.Text = "Report bugs to me on Discord \"Riley's A Cutie#1541\""
- label2.TextColor3 = Color3.fromRGB(255, 255, 255)
- label2.TextSize = 17.000
- Hi.Name = "Hi"
- Hi.Parent = main
- Hi.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
- Hi.Position = UDim2.new(0.0399718583, 0, 0.826037884, 0)
- Hi.Size = UDim2.new(0, 28, 0, 28)
- Hi.Font = Enum.Font.SourceSans
- Hi.Text = "Hi"
- Hi.TextColor3 = Color3.fromRGB(255, 255, 255)
- Hi.TextSize = 14.000
- Hi.MouseButton1Down:connect(function()
- print("Hi")
- end)
- end)
- local ScreenGui = Instance.new("ScreenGui")
- if syn and syn.protect_gui then
- syn.protect_gui(ScreenGui)
- end
- ScreenGui.Parent = CoreGui
Add Comment
Please, Sign In to add comment