ItzPricex

ItzPricex's ToolBar GUI

Dec 23rd, 2021
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.17 KB | None | 0 0
  1. -- Made by: ItzPricex ItzPricex#1845
  2.  
  3. -- Instances:
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Gui = Instance.new("ImageLabel")
  7. local WalkspeedB = Instance.new("TextButton")
  8. local NoclipB = Instance.new("TextButton")
  9. local ClickTpB = Instance.new("TextButton")
  10. local EspB = Instance.new("TextButton")
  11. local FlyB = Instance.new("TextButton")
  12. local InfJumpB = Instance.new("TextButton")
  13. local ArsenalGB = Instance.new("TextButton")
  14. local ArsenalGB_2 = Instance.new("TextButton")
  15. local MoreSoon1 = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. ScreenGui.Parent = game.CoreGui
  20.  
  21. Gui.Name = "Gui"
  22. Gui.Parent = ScreenGui
  23. Gui.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
  24. Gui.BackgroundTransparency = 1.000
  25. Gui.Position = UDim2.new(0.177993521, 0, 0.269230783, 0)
  26. Gui.Size = UDim2.new(0, 623, 0, 284)
  27. Gui.Image = "rbxassetid://3570695787"
  28. Gui.ImageColor3 = Color3.fromRGB(12, 12, 12)
  29. Gui.ScaleType = Enum.ScaleType.Slice
  30. Gui.SliceCenter = Rect.new(100, 100, 100, 100)
  31. Gui.SliceScale = 0.120
  32. Gui.Active = true
  33. Gui.Draggable = true
  34.  
  35. WalkspeedB.Name = "WalkspeedB"
  36. WalkspeedB.Parent = Gui
  37. WalkspeedB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  38. WalkspeedB.Position = UDim2.new(0.0128410915, 0, 0.0563380271, 0)
  39. WalkspeedB.Size = UDim2.new(0, 192, 0, 50)
  40. WalkspeedB.Font = Enum.Font.AmaticSC
  41. WalkspeedB.Text = "Walspeed"
  42. WalkspeedB.TextColor3 = Color3.fromRGB(255, 255, 255)
  43. WalkspeedB.TextSize = 50.000
  44. WalkspeedB.MouseButton1Down:connect(function()
  45. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 40
  46. end)
  47.  
  48. NoclipB.Name = "NolcipB"
  49. NoclipB.Parent = Gui
  50. NoclipB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  51. NoclipB.Position = UDim2.new(0.338683784, 0, 0.0563380308, 0)
  52. NoclipB.Size = UDim2.new(0, 200, 0, 50)
  53. NoclipB.Font = Enum.Font.AmaticSC
  54. NoclipB.Text = "Noclip [F]"
  55. NoclipB.TextColor3 = Color3.fromRGB(255, 255, 255)
  56. NoclipB.TextSize = 50.000
  57. NoclipB.MouseButton1Down:connect(function()
  58. noclip = false
  59. game:GetService('RunService').Stepped:connect(function()
  60. if noclip then
  61. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  62. end
  63. end)
  64. plr = game.Players.LocalPlayer
  65. mouse = plr:GetMouse()
  66. mouse.KeyDown:connect(function(key)
  67.  
  68. if key == "f" then
  69. noclip = not noclip
  70. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  71. end
  72. end)
  73. print('Loaded')
  74. print('Press "F" to noclip')
  75. end)
  76.  
  77. ClickTpB.Name = "ClickTpB"
  78. ClickTpB.Parent = Gui
  79. ClickTpB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  80. ClickTpB.Position = UDim2.new(0.675762415, 0, 0.302816898, 0)
  81. ClickTpB.Size = UDim2.new(0, 192, 0, 50)
  82. ClickTpB.Font = Enum.Font.AmaticSC
  83. ClickTpB.Text = "Click TP Tool"
  84. ClickTpB.TextColor3 = Color3.fromRGB(255, 255, 255)
  85. ClickTpB.TextSize = 50.000
  86. ClickTpB.MouseButton1Down:connect(function()
  87. mouse = game.Players.LocalPlayer:GetMouse()
  88. tool = Instance.new("Tool")
  89. tool.RequiresHandle = false
  90. tool.Name = "Click TP"
  91. tool.Activated:connect(function()
  92. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  93. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  94. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  95. end)
  96. tool.Parent = game.Players.LocalPlayer.Backpack
  97. end)
  98.  
  99. EspB.Name = "EspB"
  100. EspB.Parent = Gui
  101. EspB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  102. EspB.Position = UDim2.new(0.338683784, 0, 0.302816898, 0)
  103. EspB.Size = UDim2.new(0, 200, 0, 50)
  104. EspB.Font = Enum.Font.AmaticSC
  105. EspB.Text = "Esp"
  106. EspB.TextColor3 = Color3.fromRGB(255, 255, 255)
  107. EspB.TextSize = 50.000
  108. EspB.MouseButton1Down:connect(function()
  109. local gui = Instance.new("BillboardGui");
  110. gui.Name = "";
  111. gui.AlwaysOnTop = true;
  112. gui.LightInfluence = 0;
  113. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  114. local frame = Instance.new("Frame", gui);
  115. frame.BackgroundColor3 = Color3.fromRGB(170, 0, 0);
  116. frame.Size = UDim2.new(1, 0, 1, 0);
  117. frame.BorderSizePixel = 4;
  118. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  119. local gi = gui:Clone();
  120. local body = frame:Clone();
  121. body.Parent = gi;
  122. body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
  123.  
  124. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  125. if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
  126. gui:Clone().Parent = v.Character.Head;
  127. end
  128. end
  129. end)
  130.  
  131. FlyB.Name = "FlyB"
  132. FlyB.Parent = Gui
  133. FlyB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  134. FlyB.Position = UDim2.new(0.675762415, 0, 0.0563380271, 0)
  135. FlyB.Size = UDim2.new(0, 192, 0, 50)
  136. FlyB.Font = Enum.Font.AmaticSC
  137. FlyB.Text = "Fly [E]"
  138. FlyB.TextColor3 = Color3.fromRGB(255, 255, 255)
  139. FlyB.TextSize = 50.000
  140. FlyB.MouseButton1Down:connect(function()
  141. repeat wait()
  142. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  143. local mouse = game.Players.LocalPlayer:GetMouse()
  144. repeat wait() until mouse
  145. local plr = game.Players.LocalPlayer
  146. local torso = plr.Character.Head
  147. local flying = false
  148. local deb = true
  149. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  150. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  151. local maxspeed = 400
  152. local speed = 5000
  153.  
  154. function Fly()
  155. local bg = Instance.new("BodyGyro", torso)
  156. bg.P = 9e4
  157. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  158. bg.cframe = torso.CFrame
  159. local bv = Instance.new("BodyVelocity", torso)
  160. bv.velocity = Vector3.new(0,0.1,0)
  161. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  162. repeat wait()
  163. plr.Character.Humanoid.PlatformStand = true
  164. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  165. speed = speed+.5+(speed/maxspeed)
  166. if speed > maxspeed then
  167. speed = maxspeed
  168. end
  169. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  170. speed = speed-1
  171. if speed < 0 then
  172. speed = 0
  173. end
  174. end
  175. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  176. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  177. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  178. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  179. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  180. else
  181. bv.velocity = Vector3.new(0,0.1,0)
  182. end
  183. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  184. until not flying
  185. ctrl = {f = 0, b = 0, l = 0, r = 0}
  186. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  187. speed = 0
  188. bg:Destroy()
  189. bv:Destroy()
  190. plr.Character.Humanoid.PlatformStand = false
  191. end
  192. mouse.KeyDown:connect(function(key)
  193. if key:lower() == "e" then
  194. if flying then flying = false
  195. else
  196. flying = true
  197. Fly()
  198. end
  199. elseif key:lower() == "w" then
  200. ctrl.f = 1
  201. elseif key:lower() == "s" then
  202. ctrl.b = -1
  203. elseif key:lower() == "a" then
  204. ctrl.l = -1
  205. elseif key:lower() == "d" then
  206. ctrl.r = 1
  207. end
  208. end)
  209. mouse.KeyUp:connect(function(key)
  210. if key:lower() == "w" then
  211. ctrl.f = 0
  212. elseif key:lower() == "s" then
  213. ctrl.b = 0
  214. elseif key:lower() == "a" then
  215. ctrl.l = 0
  216. elseif key:lower() == "d" then
  217. ctrl.r = 0
  218. end
  219. end)
  220. Fly()
  221. end)
  222.  
  223. InfJumpB.Name = "InfJumpB"
  224. InfJumpB.Parent = Gui
  225. InfJumpB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  226. InfJumpB.Position = UDim2.new(0.0128410915, 0, 0.302816898, 0)
  227. InfJumpB.Size = UDim2.new(0, 192, 0, 50)
  228. InfJumpB.Font = Enum.Font.AmaticSC
  229. InfJumpB.Text = "Infinity Jump"
  230. InfJumpB.TextColor3 = Color3.fromRGB(255, 255, 255)
  231. InfJumpB.TextSize = 50.000
  232. InfJumpB.MouseButton1Down:connect(function()
  233. local InfiniteJumpEnabled = true
  234. game:GetService("UserInputService").JumpRequest:connect(function()
  235. if InfiniteJumpEnabled then
  236. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  237. end
  238. end)
  239. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  240. InfiniteJump.Position = UDim2.new(0,10,0,130)
  241. InfiniteJump.Size = UDim2.new(0,150,0,30)
  242. InfiniteJump.MouseButton1Click:connect(function()
  243. local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  244. local new = state == "Off" and "On" or state == "On" and "Off"
  245. InfiniteJumpEnabled = new == "On"
  246. InfiniteJump.Text = "Infinite Jump: " .. new
  247. end)
  248. end)
  249.  
  250. MoreSoon1.Name = "MoreSoon1"
  251. MoreSoon1.Parent = Gui
  252. MoreSoon1.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  253. MoreSoon1.Position = UDim2.new(0.0128410915, 0, 0.0563380271, 0)
  254. MoreSoon1.Size = UDim2.new(0, 192, 0, 50)
  255. MoreSoon1.Font = Enum.Font.AmaticSC
  256. MoreSoon1.Text = "Exit Gui"
  257. MoreSoon1.TextColor3 = Color3.fromRGB(255, 255, 255)
  258. MoreSoon1.TextSize = 50.000
  259. MoreSoon1.MouseButton1Down:connect(function()
  260. Gui.Visible = false
  261. end)
  262.  
  263. ArsenalGB.Name = "ArsenalGB"
  264. ArsenalGB.Parent = Gui
  265. ArsenalGB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  266. ArsenalGB.Position = UDim2.new(0.0128410915, 0, 0.799295783, 0)
  267. ArsenalGB.Size = UDim2.new(0, 192, 0, 50)
  268. ArsenalGB.Font = Enum.Font.AmaticSC
  269. ArsenalGB.Text = "Arsenal GUI"
  270. ArsenalGB.TextColor3 = Color3.fromRGB(255, 255, 255)
  271. ArsenalGB.TextSize = 50.000
  272.  
  273. ArsenalGB_2.Name = "ArsenalGB"
  274. ArsenalGB_2.Parent = Gui
  275. ArsenalGB_2.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  276. ArsenalGB_2.Position = UDim2.new(0.675762475, 0, 0.799295783, 0)
  277. ArsenalGB_2.Size = UDim2.new(0, 192, 0, 50)
  278. ArsenalGB_2.Font = Enum.Font.AmaticSC
  279. ArsenalGB_2.Text = "Jailbreak Auto F"
  280. ArsenalGB_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  281. ArsenalGB_2.TextSize = 50.000
  282.  
  283. MoreSoon1.Name = "MoreSoon1"
  284. MoreSoon1.Parent = Gui
  285. MoreSoon1.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  286. MoreSoon1.Position = UDim2.new(0.338683784, 0, 0.799295783, 0)
  287. MoreSoon1.Size = UDim2.new(0, 200, 0, 50)
  288. MoreSoon1.Font = Enum.Font.AmaticSC
  289. MoreSoon1.Text = "Exit GUI"
  290. MoreSoon1.TextColor3 = Color3.fromRGB(199, 2, 2)
  291. MoreSoon1.TextSize = 50.000
Add Comment
Please, Sign In to add comment