Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Roblox FE fly and noclip menu
- ---------------------------------
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local TextButton = Instance.new("TextButton")
- local UICorner_2 = Instance.new("UICorner")
- local TextButton_2 = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0, 0, 0.408974349, 0)
- Frame.Size = UDim2.new(0, 100, 0, 93)
- UICorner.Parent = Frame
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.0500000007, 0, 0.0749181286, 0)
- TextButton.Size = UDim2.new(0, 90, 0, 35)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Fly"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- UICorner_2.Parent = TextButton
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.BorderSizePixel = 0
- TextButton_2.Position = UDim2.new(0.0500000007, 0, 0.521642208, 0)
- TextButton_2.Size = UDim2.new(0, 90, 0, 35)
- TextButton_2.Font = Enum.Font.SourceSans
- TextButton_2.Text = "Noclip!"
- TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.TextScaled = true
- TextButton_2.TextSize = 14.000
- TextButton_2.TextWrapped = true
- UICorner_3.Parent = TextButton_2
- -- Scripts:
- local function QPUG_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- local runService = game:GetService("RunService")
- local userInputService = game:GetService("UserInputService")
- local character = game.Players.LocalPlayer.Character
- local hrp = character:WaitForChild("HumanoidRootPart")
- local camera = game.Workspace.CurrentCamera
- local bodyPos = Instance.new("BodyPosition", hrp)
- bodyPos.MaxForce = Vector3.new()
- bodyPos.D = 0
- local bodyGyro = Instance.new("BodyGyro", hrp)
- bodyGyro.MaxTorque = Vector3.new()
- bodyGyro.D = 10
- local speed = 1
- local isFlying = false
- local toggleKey = Enum.KeyCode.Q
- local button = script.Parent
- function fly()
- isFlying = true
- bodyPos.MaxForce = Vector3.new(100000, 100000, 100000)
- bodyGyro.MaxTorque = Vector3.new(100000, 100000, 100000)
- runService:BindToRenderStep("fly", 1, function()
- bodyPos.Position = hrp.Position + ((hrp.Position - camera.CFrame.p).unit * speed)
- bodyGyro.CFrame = CFrame.new(camera.CFrame.p, hrp.Position)
- end)
- end
- function stopFlying()
- isFlying = false
- runService:UnbindFromRenderStep("fly")
- bodyPos.MaxForce = Vector3.new()
- bodyGyro.MaxTorque = Vector3.new()
- end
- button.Activated:Connect(function()
- if not isFlying then
- fly()
- else
- stopFlying()
- end
- end)
- userInputService.InputBegan:Connect(function(input, isProcessed)
- if not isProcessed and input.KeyCode == toggleKey then
- stopFlying()
- end
- end)
- end
- coroutine.wrap(QPUG_fake_script)()
- local function WWNMZ_fake_script() -- TextButton_2.LocalScript
- local script = Instance.new('LocalScript', TextButton_2)
- local StealthMode = true -- If game has an anticheat that checks the logs
- local Indicator
- if not StealthMode then
- local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
- print("NOCLIP: Press Q to Activate")
- Indicator = Instance.new("TextLabel", ScreenGui)
- Indicator.AnchorPoint = Vector2.new(0, 1)
- Indicator.Position = UDim2.new(0, 0, 1, 0)
- Indicator.Size = UDim2.new(0, 200, 0, 50)
- Indicator.BackgroundTransparency = 1
- Indicator.TextScaled = true
- Indicator.TextStrokeTransparency = 0
- Indicator.TextColor3 = Color3.new(0, 0, 0)
- Indicator.TextStrokeColor3 = Color3.new(1, 1, 1)
- Indicator.Text = "Noclip: Enabled"
- end
- local noclip = true
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local mouse = player:GetMouse()
- mouse.KeyDown:Connect(function(key)
- if key == "q" then
- noclip = not noclip
- if not StealthMode then
- Indicator.Text = "Noclip: " .. (noclip and "Enabled" or "Disabled")
- end
- end
- end)
- while true do
- player = game.Players.LocalPlayer
- character = player.Character
- if noclip then
- for _, v in pairs(character:GetDescendants()) do
- pcall(function()
- if v:IsA("BasePart") then
- v.CanCollide = false
- end
- end)
- end
- end
- game:GetService("RunService").Stepped:wait()
- end
- end
- coroutine.wrap(WWNMZ_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement