Advertisement
MajorLeagueGamingHax

test

Nov 30th, 2019
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.42 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local EpicGUI_V1 = Instance.new("ScreenGui")
  7. local Open = Instance.new("TextButton")
  8. local Main1 = Instance.new("Frame")
  9. local ResetSpeed = Instance.new("TextButton")
  10. local SetSpeed = Instance.new("TextButton")
  11. local Close = Instance.new("TextButton")
  12. local SpeedValue = Instance.new("TextBox")
  13. local Title = Instance.new("TextLabel")
  14. local Noclip = Instance.new("TextButton")
  15. local Fly = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. EpicGUI_V1.Name = "EpicGUI_V1"
  20. EpicGUI_V1.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  21. EpicGUI_V1.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  22.  
  23. Open.Name = "Open"
  24. Open.Parent = EpicGUI_V1
  25. Open.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  26. Open.BorderSizePixel = 5
  27. Open.Position = UDim2.new(0.852232754, 0, 0.912472665, 0)
  28. Open.Size = UDim2.new(0, 100, 0, 25)
  29. Open.Font = Enum.Font.Gotham
  30. Open.Text = "Open"
  31. Open.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  32. Open.TextSize = 14
  33.  
  34. Main1.Name = "Main1"
  35. Main1.Parent = EpicGUI_V1
  36. Main1.Active = true
  37. Main1.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  38. Main1.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  39. Main1.BorderSizePixel = 5
  40. Main1.Position = UDim2.new(0.100792751, 0, 0.0846394971, 0)
  41. Main1.Size = UDim2.new(0, 400, 0, 547)
  42.  
  43. ResetSpeed.Name = "ResetSpeed"
  44. ResetSpeed.Parent = Main1
  45. ResetSpeed.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  46. ResetSpeed.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  47. ResetSpeed.BorderSizePixel = 5
  48. ResetSpeed.Position = UDim2.new(0.25, 0, 0.340522677, 0)
  49. ResetSpeed.Size = UDim2.new(0, 200, 0, 50)
  50. ResetSpeed.Font = Enum.Font.Gotham
  51. ResetSpeed.Text = "Default Speed"
  52. ResetSpeed.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  53. ResetSpeed.TextSize = 14
  54.  
  55. SetSpeed.Name = "SetSpeed"
  56. SetSpeed.Parent = Main1
  57. SetSpeed.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  58. SetSpeed.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  59. SetSpeed.BorderSizePixel = 5
  60. SetSpeed.Position = UDim2.new(0.25, 0, 0.186850101, 0)
  61. SetSpeed.Size = UDim2.new(0, 95, 0, 50)
  62. SetSpeed.Font = Enum.Font.Gotham
  63. SetSpeed.Text = "Set Speed"
  64. SetSpeed.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  65. SetSpeed.TextSize = 14
  66.  
  67. Close.Name = "Close"
  68. Close.Parent = Main1
  69. Close.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  70. Close.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  71. Close.BorderSizePixel = 5
  72. Close.Position = UDim2.new(0.875, 0, 0, 0)
  73. Close.Size = UDim2.new(0, 50, 0, 50)
  74. Close.Font = Enum.Font.Gotham
  75. Close.Text = "X"
  76. Close.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  77. Close.TextSize = 14
  78.  
  79. SpeedValue.Name = "SpeedValue"
  80. SpeedValue.Parent = Main1
  81. SpeedValue.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  82. SpeedValue.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  83. SpeedValue.BorderSizePixel = 5
  84. SpeedValue.Position = UDim2.new(0.537500024, 0, 0.186850101, 0)
  85. SpeedValue.Size = UDim2.new(0, 85, 0, 50)
  86. SpeedValue.Font = Enum.Font.Gotham
  87. SpeedValue.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  88. SpeedValue.Text = "16"
  89. SpeedValue.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  90. SpeedValue.TextSize = 14
  91.  
  92. Title.Name = "Title"
  93. Title.Parent = Main1
  94. Title.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  95. Title.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  96. Title.BorderSizePixel = 5
  97. Title.Size = UDim2.new(0, 400, 0, 50)
  98. Title.Font = Enum.Font.Gotham
  99. Title.Text = "EpicGUI V1"
  100. Title.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  101. Title.TextSize = 14
  102.  
  103. Noclip.Name = "Noclip"
  104. Noclip.Parent = Main1
  105. Noclip.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  106. Noclip.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  107. Noclip.BorderSizePixel = 5
  108. Noclip.Position = UDim2.new(0.25, 0, 0.656466603, 0)
  109. Noclip.Size = UDim2.new(0, 200, 0, 50)
  110. Noclip.Font = Enum.Font.Gotham
  111. Noclip.Text = "Noclip"
  112. Noclip.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  113. Noclip.TextSize = 14
  114.  
  115. Fly.Name = "Fly"
  116. Fly.Parent = Main1
  117. Fly.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  118. Fly.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  119. Fly.BorderSizePixel = 5
  120. Fly.Position = UDim2.new(0.25, 0, 0.808815241, 0)
  121. Fly.Size = UDim2.new(0, 200, 0, 50)
  122. Fly.Font = Enum.Font.Gotham
  123. Fly.Text = "Fly"
  124. Fly.TextColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  125. Fly.TextSize = 14
  126.  
  127. -- Scripts:
  128.  
  129. Noclip.MouseButton1Down:connect(function()
  130. game.StarterGui:SetCore('SendNotification', {Title='Noclip'; Text='Noclip has been activated! Use Q to toggle it.', Duration=30;});
  131. noclip = false
  132. game:GetService('RunService').Stepped:connect(function()
  133. if noclip then
  134. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  135. end
  136. end)
  137. plr = game.Players.LocalPlayer
  138. mouse = plr:GetMouse()
  139. mouse.KeyDown:connect(function(key)
  140.  
  141. if key == "q" then
  142. noclip = not noclip
  143. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  144. end
  145. end)
  146. end)
  147.  
  148. Open.MouseButton1Down:connect(function()
  149. Main1.Visible = true
  150. Open.Visible = false
  151. end)
  152.  
  153. Close.MouseButton1Down:connect(function()
  154. Main1.Visible = false
  155. Open.Visible = true
  156. end)
  157.  
  158. SetSpeed.MouseButton1Down:connect(function()µ
  159. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = SpeedValue.Text
  160. end)
  161.  
  162. ResetSpeed.MouseButton1Down:connect(function()
  163. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  164. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement