Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. local GUI = Instance.new("ScreenGui")
  2. local mainGUI = Instance.new("Frame")
  3. local Noclip = Instance.new("TextButton")
  4. local MadeBY = Instance.new("TextLabel")
  5. local Name = Instance.new("TextLabel")
  6. local Close = Instance.new("TextButton")
  7. local OpenGUI = Instance.new("Frame")
  8. local Open = Instance.new("TextButton")
  9. --Properties:
  10. GUI.Name = "GUI"
  11. GUI.Parent = game.CoreGui
  12.  
  13. mainGUI.Active = true
  14. mainGUI.Draggable = true
  15.  
  16. mainGUI.Name = "mainGUI"
  17. mainGUI.Parent = GUI
  18. mainGUI.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  19. mainGUI.Position = UDim2.new(0.422257304, 0, 0.384074926, 0)
  20. mainGUI.Size = UDim2.new(0, 197, 0, 197)
  21. mainGUI.Visible = false
  22.  
  23. Noclip.Name = "Noclip"
  24. Noclip.Parent = mainGUI
  25. Noclip.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  26. Noclip.BorderSizePixel = 0
  27. Noclip.Position = UDim2.new(0, 0, 0.395939082, 0)
  28. Noclip.Size = UDim2.new(0, 197, 0, 41)
  29. Noclip.Font = Enum.Font.SourceSans
  30. Noclip.Text = "Noclip"
  31. Noclip.TextColor3 = Color3.new(1, 1, 1)
  32. Noclip.TextScaled = true
  33. Noclip.TextSize = 6
  34. Noclip.TextWrapped = true
  35. Noclip.MouseButton1Click:connect(function()
  36. noclip = false
  37. game:GetService('RunService').Stepped:connect(function()
  38. if noclip then
  39. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  40. end
  41. end)
  42. plr = game.Players.LocalPlayer
  43. mouse = plr:GetMouse()
  44. mouse.KeyDown:connect(function(key)
  45.  
  46. if key == "v" then
  47. noclip = not noclip
  48. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  49. end
  50. end)
  51. print('Created by FileExplorer')
  52. print('Credits to Peyton for the ChangeState part of this script')
  53. end)
  54.  
  55. MadeBY.Name = "Made BY"
  56. MadeBY.Parent = mainGUI
  57. MadeBY.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  58. MadeBY.BorderSizePixel = 0
  59. MadeBY.Position = UDim2.new(0, 0, 0.751269042, 0)
  60. MadeBY.Size = UDim2.new(0, 197, 0, 49)
  61. MadeBY.Font = Enum.Font.SourceSans
  62. MadeBY.Text = "made by Yilmaz"
  63. MadeBY.TextColor3 = Color3.new(1, 1, 1)
  64. MadeBY.TextSize = 14
  65.  
  66. Name.Name = "Name"
  67. Name.Parent = mainGUI
  68. Name.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  69. Name.BorderSizePixel = 0
  70. Name.Size = UDim2.new(0, 197, 0, 50)
  71. Name.Font = Enum.Font.Fantasy
  72. Name.Text = "yilmaz HUB"
  73. Name.TextColor3 = Color3.new(1, 1, 1)
  74. Name.TextSize = 19
  75. Name.TextWrapped = true
  76.  
  77. Close.Name = "Close"
  78. Close.Parent = mainGUI
  79. Close.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  80. Close.BorderSizePixel = 0
  81. Close.Position = UDim2.new(0.883248687, 0, 0, 0)
  82. Close.Size = UDim2.new(0, 23, 0, 24)
  83. Close.Font = Enum.Font.Gotham
  84. Close.Text = "X"
  85. Close.TextColor3 = Color3.new(1, 0, 0)
  86. Close.TextScaled = true
  87. Close.TextSize = 14
  88. Close.TextWrapped = true
  89. Close.MouseButton1Click:connect(function()
  90. mainGUI.Visible = false
  91. OpenGUI.Visible = true
  92. end)
  93.  
  94. OpenGUI.Name = "OpenGUI"
  95. OpenGUI.Parent = GUI
  96. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  97. OpenGUI.Position = UDim2.new(0.460142076, 0, 0.966042161, 0)
  98. OpenGUI.Size = UDim2.new(0, 100, 0, 29)
  99.  
  100. Open.Name = "Open"
  101. Open.Parent = OpenGUI
  102. Open.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  103. Open.BorderSizePixel = 0
  104. Open.Size = UDim2.new(0, 100, 0, 29)
  105. Open.TextColor3 = Color3.new(1, 1, 1)
  106. Open.TextSize = 14
  107. Open.TextWrapped = true
  108. Open.MouseButton1Click:connect(function()
  109. mainGUI.Visible = true
  110. OpenGUI.Visible = true
  111. end)
  112.  
  113. print ("working")
  114. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement