Advertisement
Guest User

Untitled

a guest
Feb 29th, 2020
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.82 KB | None | 0 0
  1. local Games = {
  2. [3527629287] = "Big Paintball!"
  3. }
  4. local GameName = Games[game.PlaceId] or (function() -- solution for multiple places in a game
  5. local Game = "No game found!"
  6. return Game
  7. end)()
  8.  
  9.  
  10. local ScreenGui = Instance.new("ScreenGui")
  11. local Frame = Instance.new("Frame")
  12. local Line = Instance.new("Frame")
  13. local Title = Instance.new("TextLabel")
  14. local Close = Instance.new("TextButton")
  15. local Game = Instance.new("TextLabel")
  16. local Start = Instance.new("TextButton")
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. Frame.Parent = ScreenGui
  21. Frame.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  22. Frame.BorderSizePixel = 0
  23. Frame.Position = UDim2.new(0.281853437, 0, 0.252229333, 0)
  24. Frame.Size = UDim2.new(0, 654, 0, 332)
  25.  
  26. Line.Name = "Line"
  27. Line.Parent = Frame
  28. Line.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  29. Line.Position = UDim2.new(-0.000118814409, 0, 0.228558823, 0)
  30. Line.Size = UDim2.new(0, 654, 0, 13)
  31.  
  32. Title.Name = "Title"
  33. Title.Parent = Frame
  34. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  35. Title.BackgroundTransparency = 1
  36. Title.Position = UDim2.new(0.258409768, 0, 0.036144577, 0)
  37. Title.Size = UDim2.new(0, 315, 0, 50)
  38. Title.Font = Enum.Font.Cartoon
  39. Title.Text = "Nerox's Hub"
  40. Title.TextColor3 = Color3.new(1, 1, 1)
  41. Title.TextScaled = true
  42. Title.TextSize = 14
  43. Title.TextWrapped = true
  44.  
  45. Close.Name = "Close"
  46. Close.Parent = Frame
  47. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  48. Close.BackgroundTransparency = 1
  49. Close.BorderColor3 = Color3.new(1, 1, 1)
  50. Close.Position = UDim2.new(0.955657482, 0, 0, 0)
  51. Close.Size = UDim2.new(0, 28, 0, 28)
  52. Close.Font = Enum.Font.Cartoon
  53. Close.Text = "X"
  54. Close.TextColor3 = Color3.new(1, 1, 1)
  55. Close.TextScaled = true
  56. Close.TextSize = 14
  57. Close.TextWrapped = true
  58.  
  59. Game.Name = "Game"
  60. Game.Parent = Frame
  61. Game.BackgroundColor3 = Color3.new(1, 1, 1)
  62. Game.BackgroundTransparency = 1
  63. Game.Position = UDim2.new(0.0183486231, 0, 0.295180708, 0)
  64. Game.Size = UDim2.new(0, 635, 0, 50)
  65. Game.Font = Enum.Font.Cartoon
  66. Game.Text = "Game: "..GameName
  67. Game.TextColor3 = Color3.new(1, 1, 1)
  68. Game.TextSize = 60
  69. Game.TextWrapped = true
  70. Game.TextXAlignment = Enum.TextXAlignment.Left
  71. Game.TextYAlignment = Enum.TextYAlignment.Bottom
  72.  
  73. Start.Name = "Start"
  74. Start.Parent = Frame
  75. Start.BackgroundColor3 = Color3.new(1, 1, 1)
  76. Start.BackgroundTransparency = 1
  77. Start.BorderColor3 = Color3.new(1, 1, 1)
  78. Start.Position = UDim2.new(0.304281354, 0, 0.608433723, 0)
  79. Start.Size = UDim2.new(0, 256, 0, 53)
  80. Start.Font = Enum.Font.Cartoon
  81. Start.Text = "Start"
  82. Start.TextColor3 = Color3.new(1, 1, 1)
  83. Start.TextScaled = true
  84. Start.TextSize = 14
  85. Start.TextWrapped = true
  86.  
  87. local t = 10;
  88.  
  89. local tick = tick
  90. local fromHSV = Color3.fromHSV
  91. local RunService = game:GetService("RunService")
  92.  
  93. RunService:BindToRenderStep("Rainbow", 1000, function()
  94. local hue = tick() % t / t
  95. local color = fromHSV(hue, 1, 1)
  96. Line.BackgroundColor3 = color
  97. end)
  98.  
  99. --Close button+
  100. Close.MouseButton1Click:Connect(function()
  101. ScreenGui:Destroy()
  102. end)
  103. -- 2ND GUI -------------------------------------------------------------------------------------------
  104. --Start Button
  105. Start.MouseButton1Click:Connect(function()
  106. ScreenGui:Destroy()
  107. wait()
  108. if GameName == "Big Paintball!" then
  109. local ScreenGui = Instance.new("ScreenGui")
  110. local Frame = Instance.new("Frame")
  111. local Line = Instance.new("Frame")
  112. local Title = Instance.new("TextLabel")
  113. local Close = Instance.new("TextButton")
  114. local Hitbox = Instance.new("TextButton")
  115. local Set = Instance.new("TextButton")
  116. local Walkspeed = Instance.new("TextButton")
  117. local SetSpeed = Instance.new("TextButton")
  118. local TextLabel = Instance.new("TextLabel")
  119. local Height = Instance.new("TextButton")
  120. local SetFly = Instance.new("TextButton")
  121.  
  122. ScreenGui.Parent = game.CoreGui
  123.  
  124. Frame.Parent = ScreenGui
  125. Frame.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  126. Frame.BorderSizePixel = 0
  127. Frame.Position = UDim2.new(0.281853437, 0, 0.252229333, 0)
  128. Frame.Size = UDim2.new(0, 654, 0, 332)
  129.  
  130. Line.Name = "Line"
  131. Line.Parent = Frame
  132. Line.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  133. Line.Position = UDim2.new(-0.000118814409, 0, 0.228558823, 0)
  134. Line.Size = UDim2.new(0, 654, 0, 13)
  135.  
  136. Title.Name = "Title"
  137. Title.Parent = Frame
  138. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  139. Title.BackgroundTransparency = 1
  140. Title.Position = UDim2.new(0.258409768, 0, 0.036144577, 0)
  141. Title.Size = UDim2.new(0, 315, 0, 50)
  142. Title.Font = Enum.Font.Cartoon
  143. Title.Text = "Nerox's Hub"
  144. Title.TextColor3 = Color3.new(1, 1, 1)
  145. Title.TextScaled = true
  146. Title.TextSize = 14
  147. Title.TextWrapped = true
  148.  
  149. Close.Name = "Close"
  150. Close.Parent = Frame
  151. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  152. Close.BackgroundTransparency = 1
  153. Close.BorderColor3 = Color3.new(1, 1, 1)
  154. Close.Position = UDim2.new(0.955657482, 0, 0, 0)
  155. Close.Size = UDim2.new(0, 28, 0, 28)
  156. Close.Font = Enum.Font.Cartoon
  157. Close.Text = "X"
  158. Close.TextColor3 = Color3.new(1, 1, 1)
  159. Close.TextScaled = true
  160. Close.TextSize = 14
  161. Close.TextWrapped = true
  162.  
  163. Hitbox.Name = "Hitbox"
  164. Hitbox.Parent = Frame
  165. Hitbox.BackgroundColor3 = Color3.new(1, 1, 1)
  166. Hitbox.BackgroundTransparency = 1
  167. Hitbox.BorderColor3 = Color3.new(1, 1, 1)
  168. Hitbox.Position = UDim2.new(0.0290519875, 0, 0.334337354, 0)
  169. Hitbox.Size = UDim2.new(0, 176, 0, 53)
  170. Hitbox.Font = Enum.Font.Cartoon
  171. Hitbox.Text = "HitBox"
  172. Hitbox.TextColor3 = Color3.new(1, 1, 1)
  173. Hitbox.TextScaled = true
  174. Hitbox.TextSize = 14
  175. Hitbox.TextWrapped = true
  176.  
  177. Set.Name = "Set"
  178. Set.Parent = Hitbox
  179. Set.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  180. Set.Position = UDim2.new(0.209150165, 0, 1.09483647, 0)
  181. Set.Size = UDim2.new(0, 89, 0, 49)
  182. Set.Font = Enum.Font.Cartoon
  183. Set.Text = "Set"
  184. Set.TextColor3 = Color3.new(0, 0, 0)
  185. Set.TextScaled = true
  186. Set.TextSize = 14
  187. Set.TextWrapped = true
  188.  
  189. Set.MouseButton1Click:Connect(function()
  190. while wait() do
  191. local asd = workspace:getDescendants()
  192. for f=1,#asd do
  193. if asd[f].Name == "Hitbox" then
  194. if asd[f].Parent.Name ~= game.Players.LocalPlayer.Name then
  195. asd[f].Massless = true
  196. asd[f].Size = Vector3.new(50,50,50) -- the size
  197. asd[f].Transparency = 0.5
  198. end
  199. end
  200. end
  201. end
  202.  
  203. end)
  204.  
  205. Walkspeed.Name = "Walkspeed"
  206. Walkspeed.Parent = Frame
  207. Walkspeed.BackgroundColor3 = Color3.new(1, 1, 1)
  208. Walkspeed.BackgroundTransparency = 1
  209. Walkspeed.BorderColor3 = Color3.new(1, 1, 1)
  210. Walkspeed.Position = UDim2.new(0.363914371, 0, 0.310240954, 0)
  211. Walkspeed.Size = UDim2.new(0, 176, 0, 70)
  212. Walkspeed.Font = Enum.Font.Cartoon
  213. Walkspeed.Text = "Speed"
  214. Walkspeed.TextColor3 = Color3.new(1, 1, 1)
  215. Walkspeed.TextScaled = true
  216. Walkspeed.TextSize = 14
  217. Walkspeed.TextWrapped = true
  218.  
  219. SetSpeed.Name = "SetSpeed"
  220. SetSpeed.Parent = Walkspeed
  221. SetSpeed.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  222. SetSpeed.Position = UDim2.new(0.288174361, 0, 1.00009894, 0)
  223. SetSpeed.Size = UDim2.new(0, 89, 0, 49)
  224. SetSpeed.Font = Enum.Font.Cartoon
  225. SetSpeed.Text = "Set"
  226. SetSpeed.TextColor3 = Color3.new(0, 0, 0)
  227. SetSpeed.TextScaled = true
  228. SetSpeed.TextSize = 14
  229. SetSpeed.TextWrapped = true
  230.  
  231. SetSpeed.MouseButton1Click:Connect(function()
  232. local mt = getrawmetatable(game)
  233. setreadonly(mt,false)
  234. local indexBackup = mt.__index
  235. mt.__index = function(a,b)
  236. if b == "Position" and a.Parent == game.Players.LocalPlayer.Character then
  237. return nil
  238. end
  239. return indexBackup(a,b)
  240. end
  241. while wait() do
  242. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass"Humanoid".WalkSpeed = 100;
  243. end
  244.  
  245. end)
  246.  
  247. TextLabel.Parent = Frame
  248. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  249. TextLabel.BackgroundTransparency = 1
  250. TextLabel.Position = UDim2.new(0.318042785, 0, 0.816265047, 0)
  251. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  252. TextLabel.Font = Enum.Font.Cartoon
  253. TextLabel.Text = "More coming soon!"
  254. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  255. TextLabel.TextScaled = true
  256. TextLabel.TextSize = 14
  257. TextLabel.TextWrapped = true
  258.  
  259. Height.Name = "Height"
  260. Height.Parent = Frame
  261. Height.BackgroundColor3 = Color3.new(1, 1, 1)
  262. Height.BackgroundTransparency = 1
  263. Height.BorderColor3 = Color3.new(1, 1, 1)
  264. Height.Position = UDim2.new(0.686544299, 0, 0.346385539, 0)
  265. Height.Size = UDim2.new(0, 176, 0, 53)
  266. Height.Font = Enum.Font.Cartoon
  267. Height.Text = "Fly"
  268. Height.TextColor3 = Color3.new(1, 1, 1)
  269. Height.TextScaled = true
  270. Height.TextSize = 14
  271. Height.TextWrapped = true
  272.  
  273. SetFly.Name = "SetFly"
  274. SetFly.Parent = Height
  275. SetFly.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  276. SetFly.Position = UDim2.new(0.243241072, 0, 1.09483647, 0)
  277. SetFly.Size = UDim2.new(0, 89, 0, 49)
  278. SetFly.Font = Enum.Font.Cartoon
  279. SetFly.Text = "Set"
  280. SetFly.TextColor3 = Color3.new(0, 0, 0)
  281. SetFly.TextScaled = true
  282. SetFly.TextSize = 14
  283. SetFly.TextWrapped = true
  284.  
  285. SetFly.MouseButton1Click:Connect(function()
  286. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 150;
  287. end)
  288.  
  289.  
  290. local t = 10;
  291.  
  292. local tick = tick
  293. local fromHSV = Color3.fromHSV
  294. local RunService = game:GetService("RunService")
  295.  
  296. RunService:BindToRenderStep("Rainbow", 1000, function()
  297. local hue = tick() % t / t
  298. local color = fromHSV(hue, 1, 1)
  299. Line.BackgroundColor3 = color
  300. end)
  301.  
  302. -- ye
  303.  
  304. Close.MouseButton1Click:Connect(function()
  305. ScreenGui:Destroy()
  306. end)
  307.  
  308. Close.MouseButton1Click:Connect(function()
  309. ScreenGui:Destroy()
  310. end)
  311. end
  312.  
  313. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement