Advertisement
Guest User

FE fly and noclip Menu for roblox

a guest
Aug 11th, 2023
2,030
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.91 KB | None | 0 0
  1. Roblox FE fly and noclip menu
  2.  
  3. ---------------------------------
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local UICorner = Instance.new("UICorner")
  8. local TextButton = Instance.new("TextButton")
  9. local UICorner_2 = Instance.new("UICorner")
  10. local TextButton_2 = Instance.new("TextButton")
  11. local UICorner_3 = Instance.new("UICorner")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Frame.Parent = ScreenGui
  19. Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  20. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  21. Frame.BorderSizePixel = 0
  22. Frame.Position = UDim2.new(0, 0, 0.408974349, 0)
  23. Frame.Size = UDim2.new(0, 100, 0, 93)
  24.  
  25. UICorner.Parent = Frame
  26.  
  27. TextButton.Parent = Frame
  28. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  30. TextButton.BorderSizePixel = 0
  31. TextButton.Position = UDim2.new(0.0500000007, 0, 0.0749181286, 0)
  32. TextButton.Size = UDim2.new(0, 90, 0, 35)
  33. TextButton.Font = Enum.Font.SourceSans
  34. TextButton.Text = "Fly"
  35. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  36. TextButton.TextScaled = true
  37. TextButton.TextSize = 14.000
  38. TextButton.TextWrapped = true
  39.  
  40. UICorner_2.Parent = TextButton
  41.  
  42. TextButton_2.Parent = Frame
  43. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  44. TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  45. TextButton_2.BorderSizePixel = 0
  46. TextButton_2.Position = UDim2.new(0.0500000007, 0, 0.521642208, 0)
  47. TextButton_2.Size = UDim2.new(0, 90, 0, 35)
  48. TextButton_2.Font = Enum.Font.SourceSans
  49. TextButton_2.Text = "Noclip!"
  50. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. TextButton_2.TextScaled = true
  52. TextButton_2.TextSize = 14.000
  53. TextButton_2.TextWrapped = true
  54.  
  55. UICorner_3.Parent = TextButton_2
  56.  
  57. -- Scripts:
  58.  
  59. local function QPUG_fake_script() -- TextButton.LocalScript
  60. local script = Instance.new('LocalScript', TextButton)
  61.  
  62.  
  63. local runService = game:GetService("RunService")
  64. local userInputService = game:GetService("UserInputService")
  65.  
  66. local character = game.Players.LocalPlayer.Character
  67. local hrp = character:WaitForChild("HumanoidRootPart")
  68. local camera = game.Workspace.CurrentCamera
  69.  
  70. local bodyPos = Instance.new("BodyPosition", hrp)
  71. bodyPos.MaxForce = Vector3.new()
  72. bodyPos.D = 0
  73.  
  74. local bodyGyro = Instance.new("BodyGyro", hrp)
  75. bodyGyro.MaxTorque = Vector3.new()
  76. bodyGyro.D = 10
  77.  
  78. local speed = 1
  79. local isFlying = false
  80.  
  81. local toggleKey = Enum.KeyCode.Q
  82.  
  83. local button = script.Parent
  84.  
  85. function fly()
  86. isFlying = true
  87. bodyPos.MaxForce = Vector3.new(100000, 100000, 100000)
  88. bodyGyro.MaxTorque = Vector3.new(100000, 100000, 100000)
  89. runService:BindToRenderStep("fly", 1, function()
  90. bodyPos.Position = hrp.Position + ((hrp.Position - camera.CFrame.p).unit * speed)
  91. bodyGyro.CFrame = CFrame.new(camera.CFrame.p, hrp.Position)
  92. end)
  93. end
  94.  
  95. function stopFlying()
  96. isFlying = false
  97. runService:UnbindFromRenderStep("fly")
  98. bodyPos.MaxForce = Vector3.new()
  99. bodyGyro.MaxTorque = Vector3.new()
  100. end
  101.  
  102. button.Activated:Connect(function()
  103. if not isFlying then
  104. fly()
  105. else
  106. stopFlying()
  107. end
  108. end)
  109.  
  110. userInputService.InputBegan:Connect(function(input, isProcessed)
  111. if not isProcessed and input.KeyCode == toggleKey then
  112. stopFlying()
  113. end
  114. end)
  115. end
  116. coroutine.wrap(QPUG_fake_script)()
  117. local function WWNMZ_fake_script() -- TextButton_2.LocalScript
  118. local script = Instance.new('LocalScript', TextButton_2)
  119.  
  120. local StealthMode = true -- If game has an anticheat that checks the logs
  121.  
  122. local Indicator
  123.  
  124. if not StealthMode then
  125. local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
  126. print("NOCLIP: Press Q to Activate")
  127. Indicator = Instance.new("TextLabel", ScreenGui)
  128. Indicator.AnchorPoint = Vector2.new(0, 1)
  129. Indicator.Position = UDim2.new(0, 0, 1, 0)
  130. Indicator.Size = UDim2.new(0, 200, 0, 50)
  131. Indicator.BackgroundTransparency = 1
  132. Indicator.TextScaled = true
  133. Indicator.TextStrokeTransparency = 0
  134. Indicator.TextColor3 = Color3.new(0, 0, 0)
  135. Indicator.TextStrokeColor3 = Color3.new(1, 1, 1)
  136. Indicator.Text = "Noclip: Enabled"
  137. end
  138.  
  139. local noclip = true
  140. local player = game.Players.LocalPlayer
  141. local character = player.Character or player.CharacterAdded:Wait()
  142.  
  143. local mouse = player:GetMouse()
  144.  
  145. mouse.KeyDown:Connect(function(key)
  146. if key == "q" then
  147. noclip = not noclip
  148.  
  149. if not StealthMode then
  150. Indicator.Text = "Noclip: " .. (noclip and "Enabled" or "Disabled")
  151. end
  152. end
  153. end)
  154.  
  155. while true do
  156. player = game.Players.LocalPlayer
  157. character = player.Character
  158.  
  159. if noclip then
  160. for _, v in pairs(character:GetDescendants()) do
  161. pcall(function()
  162. if v:IsA("BasePart") then
  163. v.CanCollide = false
  164. end
  165. end)
  166. end
  167. end
  168.  
  169. game:GetService("RunService").Stepped:wait()
  170. end
  171. end
  172. coroutine.wrap(WWNMZ_fake_script)()
  173.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement