1_F0

Untitled

Jun 28th, 2020
16,714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. -- Tricky On V3rm
  2.  
  3. Gui = Instance.new("ScreenGui", game.CoreGui)
  4. Button = Instance.new("TextButton", Gui)
  5. BackGround = Instance.new("Frame")
  6. Title = Instance.new("TextLabel")
  7.  
  8.  
  9. BackGround.Name = "BackGround"
  10. BackGround.Parent = Gui
  11. BackGround.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  12. BackGround.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  13. BackGround.BorderSizePixel = 2
  14. BackGround.Position = UDim2.new(0.003, 0, 0.93, 0)
  15. BackGround.Size = UDim2.new(0, 210, 0, 70)
  16. BackGround.Active = true
  17. BackGround.Draggable = true
  18.  
  19. Title.Name = "Title"
  20. Title.Parent = BackGround
  21. Title.BackgroundColor3 = Color3.new(0.615686, 0.247059, 0.247059)
  22. Title.BorderColor3 = Color3.new(0.364706, 0.0666667, 0.0666667)
  23. Title.BorderSizePixel = 2
  24. Title.Size = UDim2.new(0, 210, 0, 33)
  25. Title.Font = Enum.Font.SourceSansBold
  26. Title.FontSize = Enum.FontSize.Size32
  27. Title.Text = "Trick-Clip"
  28. Title.TextColor3 = Color3.new(0.419608, 0.498039, 1)
  29. Title.TextSize = 30
  30. Title.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  31. Title.TextStrokeTransparency = 0
  32.  
  33. Button.Parent = BackGround
  34. Button.BackgroundColor3 = Color3.new(0.615686, 0.247059, 0.247059)
  35. Button.BorderColor3 = Color3.new(0.364706, 0.0666667, 0.0666667)
  36. Button.BorderSizePixel = 2
  37. Button.Size = UDim2.new(0, 210, 0, 33)
  38. Button.Position = UDim2.new(0, 0, 0, 45)
  39. Button.BackgroundTransparency = 0
  40. Button.Font = Enum.Font.SourceSansBold
  41. Button.FontSize = Enum.FontSize.Size32
  42. Button.Text = "Enable Noclip"
  43. Button.TextColor3 = Color3.new(0.419608, 0.498039, 1)
  44. Button.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  45. Button.TextStrokeTransparency = 0
  46.  
  47. noclip = false
  48. game:GetService('RunService').Stepped:connect(function()
  49. if noclip then
  50. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  51. end
  52. end)
  53. Button.MouseButton1Down:connect(function()
  54. noclip = not noclip
  55. if Button.Text == "Enable Noclip" then
  56. Button.Text = "Disable Noclip"
  57. else
  58. Button.Text = "Enable Noclip"
  59. end
  60. end)
Add Comment
Please, Sign In to add comment