Advertisement
DanielYoes

FE NOCLIP GUI 2019

May 24th, 2019
5,953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. -- credits to the original person who made the noclip script, i just made the gui.
  2. -- if u die you have to execute this again
  3. _G.NoclipEnabled = false
  4. if game.CoreGui:FindFirstChild("Jailbreak Noclip") then game.CoreGui["Jailbreak Noclip"]:Destroy() end
  5. --Instances:
  6. local JailbreakNoclip = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Toggle = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local LocalScript = Instance.new("LocalScript")
  11. --Properties:
  12. JailbreakNoclip.Name = "Jailbreak Noclip"
  13. JailbreakNoclip.Parent = game.CoreGui
  14. JailbreakNoclip.ResetOnSpawn = false
  15.  
  16. Frame.Parent = JailbreakNoclip
  17. Frame.Active = true
  18. Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  19. Frame.Position = UDim2.new(0.0708215311, 0, 0.598513007, 0)
  20. Frame.Size = UDim2.new(0, 314, 0, 107)
  21. Frame.Draggable = true
  22.  
  23. Toggle.Name = "Toggle"
  24. Toggle.Parent = Frame
  25. Toggle.BackgroundColor3 = Color3.new(0, 0, 0)
  26. Toggle.BorderSizePixel = 0
  27. Toggle.Position = UDim2.new(0.152866244, 0, 0.0747663528, 0)
  28. Toggle.Size = UDim2.new(0, 218, 0, 54)
  29. Toggle.Font = Enum.Font.SourceSans
  30. Toggle.Text = "Toggle"
  31. Toggle.TextColor3 = Color3.new(1, 1, 1)
  32. Toggle.TextScaled = true
  33. Toggle.TextSize = 14
  34. Toggle.TextWrapped = true
  35.  
  36. TextLabel.Parent = Frame
  37. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  38. TextLabel.BackgroundTransparency = 1
  39. TextLabel.BorderSizePixel = 0
  40. TextLabel.Position = UDim2.new(0.181528658, 0, 0.532710254, 0)
  41. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  42. TextLabel.Font = Enum.Font.SourceSans
  43. TextLabel.Text = "Made by Very Random Guy on V3rm."
  44. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  45. TextLabel.TextSize = 15
  46. TextLabel.TextWrapped = true
  47.  
  48. LocalScript.Parent = Toggle
  49.  
  50. local Frame = LocalScript.Parent.Parent
  51. _G.NoclipEnabled = false
  52. LocalScript.Parent.MouseButton1Down:Connect(function()
  53. if _G.NoclipEnabled == true then
  54. _G.NoclipEnabled = false
  55. Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  56. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Noclip", Text = "Noclip has been disabled."})
  57. else
  58. _G.NoclipEnabled = true
  59. Frame.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  60. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Noclip", Text = "Noclip has been enabled."})
  61. end
  62. end)
  63.  
  64. game.Workspace:FindFirstChild(game:GetService("Players").LocalPlayer.Name).RightHand.Touched:Connect(function(obj)
  65. if _G.NoclipEnabled == true then
  66. if obj ~= workspace.Terrain then
  67. if obj.CanCollide == true then
  68. obj.CanCollide = false
  69. wait(1)
  70. obj.CanCollide = true
  71. end
  72. end
  73. end
  74. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement