Advertisement
sadbnhmsadgsadnhdsav

Noclip Script

Sep 16th, 2019
46,129
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 2 1
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Drag = Instance.new("TextButton")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0.275453836, 0, 0.186732173, 0)
  17. Frame.Size = UDim2.new(0, 379, 0, 373)
  18.  
  19. Drag.Name = "Drag"
  20. Drag.Parent = Frame
  21. Drag.BackgroundColor3 = Color3.new(1, 1, 1)
  22. Drag.BorderColor3 = Color3.new(0.917647, 0.917647, 0.917647)
  23. Drag.Size = UDim2.new(0, 379, 0, 27)
  24. Drag.Text = "Drag"
  25. Drag.TextColor3 = Color3.new(0, 0, 0)
  26.  
  27. TextButton.Parent = Frame
  28. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  29. TextButton.Position = UDim2.new(0.261265785, 0, 0.352023244, 0)
  30. TextButton.Size = UDim2.new(0, 200, 0, 50)
  31. TextButton.Font = Enum.Font.SourceSans
  32. TextButton.Text = "Noclip R15"
  33. TextButton.TextColor3 = Color3.new(0, 0, 0)
  34. TextButton.TextSize = 14
  35. TextButton.MouseButton1Down:connect(function()
  36. nam = game.Players.LocalPlayer.Name
  37.  
  38. game:GetService('RunService').Stepped:connect(function()
  39. for a, b in pairs(game.Workspace:GetChildren()) do
  40. if b.Name == nam then
  41. for i, v in pairs(game.Workspace[nam]:GetChildren()) do
  42. if v:IsA("BasePart") then
  43. v.CanCollide = false
  44.  
  45. end
  46. end
  47. end
  48. end
  49. end)
  50.  
  51. Workspace[nam].Head.Changed:connect(function()
  52. for a, b in pairs(game.Workspace:GetChildren()) do
  53. if b.Name == nam then
  54. for i, v in pairs(game.Workspace[nam]:GetChildren()) do
  55. if v:IsA("BasePart") then
  56. v.CanCollide = false
  57.  
  58. end
  59. end
  60. end
  61. end
  62. end)
  63. end)
  64.  
  65. TextButton_2.Parent = Frame
  66. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  67. TextButton_2.Position = UDim2.new(0.261265785, 0, 0.615844727, 0)
  68. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  69. TextButton_2.Font = Enum.Font.SourceSans
  70. TextButton_2.Text = "Noclip R6"
  71. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  72. TextButton_2.TextSize = 14
  73. TextButton_2.MouseButton1Down:connect(function()
  74. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  75. game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
  76. while true do
  77. game:GetService("RunService").Stepped:wait()
  78. game.Players.LocalPlayer.Character.Head.CanCollide = false
  79. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  80. end
  81. end)
  82.  
  83. TextLabel.Parent = Frame
  84. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  85. TextLabel.Position = UDim2.new(0.104106054, 0, 0.111652002, 0)
  86. TextLabel.Size = UDim2.new(0, 299, 0, 50)
  87. TextLabel.Font = Enum.Font.SourceSans
  88. TextLabel.Text = "hack noclip (work all game)"
  89. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  90. TextLabel.TextSize = 14
  91. TextLabel.TextWrapped = true
  92. -- Scripts:
  93. function SCRIPT_GBXM85_FAKESCRIPT() -- Drag.LocalScript
  94. local script = Instance.new('LocalScript')
  95. script.Parent = Drag
  96. wanttobemoved=script.Parent.Parent
  97. X=wanttobemoved.Position.X.Offset
  98. Y=wanttobemoved.Position.Y.Offset
  99. XS=wanttobemoved.Position.X.Scale
  100. YS=wanttobemoved.Position.Y.Scale
  101. function down(posX,posY)--the positions of the mouse
  102. drag=true--activate the drag function
  103. X=wanttobemoved.Position.X.Offset--redefines the value "X"
  104. Y=wanttobemoved.Position.Y.Offset--redefines the value "Y"
  105. XS=wanttobemoved.Position.X.Scale
  106. YS=wanttobemoved.Position.Y.Scale
  107. DposX=posX-X--the mouse's X position offset by the frame's X position.
  108. DposY=posY-Y--the mouse's Y position offset by the frame's Y position.
  109. print(""..DposX..","..DposY.."")--remembers the values DposX and DposY in the output toolbar.
  110. end
  111. function up()
  112. drag=false--deactivate the drag
  113. end
  114. function move(posX,posY)--again, the positions of the mouse
  115. if drag then--if held down then
  116. wanttobemoved.Position=UDim2.new(XS,posX - DposX,YS,posY - DposY)
  117. end
  118. end
  119. script.Parent.MouseButton1Down:connect(down)
  120. script.Parent.MouseButton1Up:connect(up)
  121. script.Parent.MouseLeave:connect(up)
  122. script.Parent.MouseMoved:connect(move)
  123.  
  124. end
  125. coroutine.resume(coroutine.create(SCRIPT_GBXM85_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement