Advertisement
Mythitem

Mythitem's Universal Gui

May 14th, 2019
14,605
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.14 KB | None | 0 0
  1. Universal Gui = Instance.new("ScreenGui")
  2. OpenButton = Instance.new("TextButton")
  3. CloseButton = Instance.new("TextButton")
  4. Main = Instance.new("Frame")
  5. Title = Instance.new("TextLabel")
  6. WalkspeedQ = Instance.new("TextButton")
  7. NoclipB = Instance.new("TextButton")
  8. RemoveAll = Instance.new("TextButton")
  9. GravityON = Instance.new("TextButton")
  10. Godmode = Instance.new("TextButton")
  11. GravityOFF = Instance.new("TextButton")
  12. BTools = Instance.new("TextButton")
  13. InfiniteJump = Instance.new("TextButton")
  14. InputPlayer = Instance.new("TextBox")
  15. GotoPlayer = Instance.new("TextButton")
  16.  
  17. Universal Gui.Name = "Universal Gui"
  18. Universal Gui.Parent = game.CoreGui
  19.  
  20. OpenButton.Name = "OpenButton"
  21. OpenButton.Parent = Universal Gui
  22. OpenButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  23. OpenButton.BorderSizePixel = 0
  24. OpenButton.Position = UDim2.new(0, 0, 0.640625, 0)
  25. OpenButton.Size = UDim2.new(0, 139, 0, 50)
  26. OpenButton.Font = Enum.Font.Cartoon
  27. OpenButton.FontSize = Enum.FontSize.Size14
  28. OpenButton.Text = "OPEN"
  29. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  30. OpenButton.TextScaled = true
  31. OpenButton.TextSize = 14
  32. OpenButton.TextWrapped = true
  33. OpenButton.MouseButton1Down:connect(function()
  34. Main.Visible = true
  35. CloseButton.Visible = true
  36. OpenButton.Visible = false
  37. end)
  38.  
  39. CloseButton.Name = "CloseButton"
  40. CloseButton.Parent = Universal Gui
  41. CloseButton.Visible = false
  42. CloseButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  43. CloseButton.BorderSizePixel = 0
  44. CloseButton.Position = UDim2.new(0, 0, 0.640625, 0)
  45. CloseButton.Size = UDim2.new(0, 139, 0, 50)
  46. CloseButton.Font = Enum.Font.Cartoon
  47. CloseButton.FontSize = Enum.FontSize.Size14
  48. CloseButton.Text = "CLOSE"
  49. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  50. CloseButton.TextScaled = true
  51. CloseButton.TextSize = 14
  52. CloseButton.TextWrapped = true
  53. CloseButton.MouseButton1Down:connect(function()
  54. Main.Visible = false
  55. CloseButton.Visible = false
  56. OpenButton.Visible = true
  57. end)
  58.  
  59. Main.Name = "Main"
  60. Main.Parent = Universal Gui
  61. Main.Draggable = true
  62. Main.Active = true
  63. Main.Visible = false
  64. Main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  65. Main.BorderSizePixel = 0
  66. Main.BackgroundTransparency = 0.69999998807907
  67. Main.Position = UDim2.new(0.187782809, 0, 0.0809327811, 0)
  68. Main.Size = UDim2.new(0, 652, 0, 500)
  69.  
  70. Title.Name = "Title"
  71. Title.Parent = Main
  72. Title.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  73. Title.BorderSizePixel = 0
  74. Title.Size = UDim2.new(0, 652, 0, 50)
  75. Title.Font = Enum.Font.SourceSansBold
  76. Title.FontSize = Enum.FontSize.Size48
  77. Title.Text = "Universal Gui | Created by Mythitem."
  78. Title.TextColor3 = Color3.new(1, 1, 1)
  79. Title.TextSize = 40
  80. Title.TextWrapped = true
  81.  
  82. WalkspeedQ.Name = "WalkspeedQ"
  83. WalkspeedQ.Parent = Main
  84. WalkspeedQ.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  85. WalkspeedQ.BorderSizePixel = 0
  86. WalkspeedQ.Position = UDim2.new(0.0178603820, 0, 0.112641335, 0)
  87. WalkspeedQ.Size = UDim2.new(0, 300, 0, 50)
  88. WalkspeedQ.Font = Enum.Font.Bodoni
  89. WalkspeedQ.FontSize = Enum.FontSize.Size32
  90. WalkspeedQ.Text = "SpeedHax [Q]"
  91. WalkspeedQ.TextColor3 = Color3.new(1, 1, 1)
  92. WalkspeedQ.TextSize = 30
  93. WalkspeedQ.MouseButton1Down:connect(function()
  94. local walkspeedplayer = game:GetService("Players").LocalPlayer
  95. local walkspeedmouse = walkspeedplayer:GetMouse()
  96.  
  97. local walkspeedenabled = false
  98.  
  99. function x_walkspeed(key)
  100. if (key == "q") then
  101. if walkspeedenabled == false then
  102. _G.WS = 200;
  103. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  104. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  105. Humanoid.WalkSpeed = _G.WS;
  106. end)
  107. Humanoid.WalkSpeed = _G.WS;
  108.  
  109. walkspeedenabled = true
  110. elseif walkspeedenabled == true then
  111. _G.WS = 20;
  112. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  113. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  114. Humanoid.WalkSpeed = _G.WS;
  115. end)
  116. Humanoid.WalkSpeed = _G.WS;
  117.  
  118. walkspeedenabled = false
  119. end
  120. end
  121. end
  122.  
  123. walkspeedmouse.KeyDown:connect(x_walkspeed)
  124.  
  125. end)
  126.  
  127. NoclipB.Name = "NoclipB"
  128. NoclipB.Parent = Main
  129. NoclipB.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  130. NoclipB.BorderSizePixel = 0
  131. NoclipB.Position = UDim2.new(0.0178603820, 0, 0.212641335, 0)
  132. NoclipB.Size = UDim2.new(0, 300, 0, 50)
  133. NoclipB.Font = Enum.Font.Bodoni
  134. NoclipB.FontSize = Enum.FontSize.Size32
  135. NoclipB.Text = "Noclip [B]"
  136. NoclipB.TextColor3 = Color3.new(1, 1, 1)
  137. NoclipB.TextSize = 30
  138. NoclipB.MouseButton1Down:connect(function()
  139.  
  140. local noclipplayer = game:GetService("Players").LocalPlayer
  141. local noclipmouse = noclipplayer:GetMouse()
  142.  
  143. local donoclip = false
  144. local noclip = false
  145.  
  146. function b_noclip(key)
  147. if (key == "b") then
  148. if noclip == false then
  149. donoclip = true
  150.  
  151. noclip = true
  152. elseif noclip == true then
  153. donoclip = false
  154.  
  155. noclip = false
  156. end
  157. end
  158. end
  159.  
  160. noclipmouse.KeyDown:connect(b_noclip)
  161.  
  162. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  163. if obj ~= workspace.Terrain then
  164. if donoclip == true then
  165. obj.CanCollide = false
  166. else
  167. obj.CanCollide = true
  168. end
  169. end
  170. end)
  171. end)
  172.  
  173. GravityON.Name = "Gravity ON"
  174. GravityON.Parent = Main
  175. GravityON.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  176. GravityON.BorderSizePixel = 0
  177. GravityON.Position = UDim2.new(0.0178603820, 0, 0.312641335, 0)
  178. GravityON.Size = UDim2.new(0, 300, 0, 50)
  179. GravityON.Font = Enum.Font.Bodoni
  180. GravityON.FontSize = Enum.FontSize.Size32
  181. GravityON.Text = "Gravity: ON"
  182. GravityON.TextColor3 = Color3.new(1, 1, 1)
  183. GravityON.TextSize = 30
  184. GravityON.MouseButton1Down:connect(function()
  185. game.Workspace.Gravity = 196.2
  186. GravityOFF.Visible = true
  187. GravityON.Visible = false
  188. end)
  189.  
  190. Godmode.Name = "Godmode-Sorta Works"
  191. Godmode.Parent = Main
  192. Godmode.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  193. Godmode.BorderSizePixel = 0
  194. Godmode.Position = UDim2.new(0.0178603820, 0, 0.412641335, 0)
  195. Godmode.Size = UDim2.new(0, 300, 0, 50)
  196. Godmode.Font = Enum.Font.Bodoni
  197. Godmode.FontSize = Enum.FontSize.Size32
  198. Godmode.Text = "Godmode-Sorta Works"
  199. Godmode.TextColor3 = Color3.new(1, 1, 1)
  200. Godmode.TextSize = 30
  201. Godmode.MouseButton1Down:connect(function()
  202. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  203. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  204. l.Parent = game:GetService("Players").LocalPlayer.Character
  205. l.Name = "Humanoid"
  206. wait(0.1)
  207. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  208. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  209. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  210. wait(0.1)
  211. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  212. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  213. end)
  214.  
  215. GravityOFF.Name = "Gravity OFF"
  216. GravityOFF.Parent = Main
  217. GravityOFF.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  218. GravityOFF.BorderSizePixel = 0
  219. GravityOFF.Position = UDim2.new(0.0178603820, 0, 0.512641335, 0)
  220. GravityOFF.Size = UDim2.new(0, 300, 0, 50)
  221. GravityOFF.Font = Enum.Font.Bodoni
  222. GravityOFF.FontSize = Enum.FontSize.Size32
  223. GravityOFF.Text = "Gravity: OFF"
  224. GravityOFF.TextColor3 = Color3.new(1, 1, 1)
  225. GravityOFF.TextSize = 30
  226. GravityOFF.MouseButton1Down:connect(function()
  227. game.Workspace.Gravity = 35
  228. GravityOFF.Visible = false
  229. GravityON.Visible = true
  230. end)
  231.  
  232. BTools.Name = "BTools"
  233. BTools.Parent = Main
  234. BTools.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  235. BTools.BorderSizePixel = 0
  236. BTools.Position = UDim2.new(0.0178603820, 0, 0.612641335, 0)
  237. BTools.Size = UDim2.new(0, 300, 0, 50)
  238. BTools.Font = Enum.Font.Bodoni
  239. BTools.FontSize = Enum.FontSize.Size32
  240. BTools.Text = "BTools"
  241. BTools.TextColor3 = Color3.new(1, 1, 1)
  242. BTools.TextSize = 30
  243. BTools.MouseButton1Down:connect(function()
  244. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  245. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  246. if child.ClassName == "Part" then
  247. child.Locked = false
  248. end
  249. if child.ClassName == "MeshPart" then
  250. child.Locked = false
  251. end
  252. if child.ClassName == "UnionOperation" then
  253. child.Locked = false
  254. end
  255. if child.ClassName == "Model" then
  256. for index, chil in pairs(child:GetChildren()) do
  257. if chil.ClassName == "Part" then
  258. chil.Locked = false
  259. end
  260. if chil.ClassName == "MeshPart" then
  261. chil.Locked = false
  262. end
  263. if chil.ClassName == "UnionOperation" then
  264. chil.Locked = false
  265. end
  266. if chil.ClassName == "Model" then
  267. for index, childe in pairs(chil:GetChildren()) do
  268. if childe.ClassName == "Part" then
  269. childe.Locked = false
  270. end
  271. if childe.ClassName == "MeshPart" then
  272. childe.Locked = false
  273. end
  274. if childe.ClassName == "UnionOperation" then
  275. childe.Locked = false
  276. end
  277. if childe.ClassName == "Model" then
  278. for index, childeo in pairs(childe:GetChildren()) do
  279. if childeo.ClassName == "Part" then
  280. childeo.Locked = false
  281. end
  282. if childeo.ClassName == "MeshPart" then
  283. childeo.Locked = false
  284. end
  285. if childeo.ClassName == "UnionOperation" then
  286. childeo.Locked = false
  287. end
  288. if childeo.ClassName == "Model" then
  289. end
  290. end
  291. end
  292. end
  293. end
  294. end
  295. end
  296. end
  297. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  298. c.BinType = Enum.BinType.Hammer
  299. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  300. c.BinType = Enum.BinType.Clone
  301. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  302. c.BinType = Enum.BinType.Grab
  303. end)
  304.  
  305. InfiniteJump.Name = "Infinite Jump"
  306. InfiniteJump.Parent = Main
  307. InfiniteJump.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  308. InfiniteJump.BorderSizePixel = 0
  309. InfiniteJump.Position = UDim2.new(0.0178603820, 0, 0.712641335, 0)
  310. InfiniteJump.Size = UDim2.new(0, 300, 0, 50)
  311. InfiniteJump.Font = Enum.Font.Bodoni
  312. InfiniteJump.FontSize = Enum.FontSize.Size32
  313. InfiniteJump.Text = "Infinite Jump"
  314. InfiniteJump.TextColor3 = Color3.new(1, 1, 1)
  315. InfiniteJump.TextSize = 30
  316. InfiniteJump.MouseButton1Down:connect(function()
  317. game:GetService("UserInputService").JumpRequest:connect(function()
  318. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  319. end)
  320. end)
  321.  
  322. InputPlayer.Name = "InputPlayer"
  323. InputPlayer.Parent = Main
  324. InputPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  325. InputPlayer.BorderSizePixel = 0
  326. InputPlayer.Position = UDim2.new(0.0178603820, 0, 0.812641335, 0)
  327. InputPlayer.Size = UDim2.new(0, 300, 0, 50)
  328. InputPlayer.Font = Enum.Font.Cartoon
  329. InputPlayer.FontSize = Enum.FontSize.Size14
  330. InputPlayer.Text = "Player"
  331. InputPlayer.TextColor3 = Color3.new(1, 1, 1)
  332. InputPlayer.TextScaled = true
  333. InputPlayer.TextSize = 14
  334. InputPlayer.TextWrapped = true
  335.  
  336. GotoPlayer.Name = "Goto Player"
  337. GotoPlayer.Parent = Main
  338. GotoPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  339. GotoPlayer.BorderSizePixel = 0
  340. GotoPlayer.Position = UDim2.new(0.478603820, 0, 0.812641335, 0)
  341. GotoPlayer.Size = UDim2.new(0, 300, 0, 50)
  342. GotoPlayer.Font = Enum.Font.Bodoni
  343. GotoPlayer.FontSize = Enum.FontSize.Size32
  344. GotoPlayer.Text = "Goto Player"
  345. GotoPlayer.TextColor3 = Color3.new(1, 1, 1)
  346. GotoPlayer.TextSize = 30
  347. GotoPlayer.MouseButton1Down:connect(function()
  348. local tp_namedplayer = InputPlayer.Text
  349. local tp_player = game:GetService("Players")[tp_namedplayer]
  350. local PLR = game:GetService("Players").LocalPlayer
  351. local p = InputPlayer.Text
  352.  
  353. if tp_player then
  354. for i = 1,20 do
  355. wait()
  356. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  357. end
  358. end
  359. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement