Amaamc

My new Gui [fixes] (working now)

Jun 27th, 2019
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 67.14 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local OpenFrame = Instance.new("Frame")
  6. local open = Instance.new("TextButton")
  7. local main = Instance.new("Frame")
  8. local Info1 = Instance.new("TextLabel")
  9. local Info2 = Instance.new("TextLabel")
  10. local btools = Instance.new("TextButton")
  11. local speedcity = Instance.new("TextButton")
  12. local btools2 = Instance.new("TextButton")
  13. local teleport = Instance.new("TextButton")
  14. local robbery = Instance.new("TextButton")
  15. local noobsimskill = Instance.new("TextButton")
  16. local buildaboat = Instance.new("TextButton")
  17. local r2d = Instance.new("TextButton")
  18. local jailbreak = Instance.new("TextButton")
  19. local dls = Instance.new("TextButton")
  20. local texting = Instance.new("TextButton")
  21. local _1000ws = Instance.new("TextButton")
  22. local _150ws = Instance.new("TextButton")
  23. local _1000jp = Instance.new("TextButton")
  24. local _150jp = Instance.new("TextButton")
  25. local close = Instance.new("TextButton")
  26. --Properties:
  27. ScreenGui.Parent = game.CoreGui
  28. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  29.  
  30. OpenFrame.Name = "OpenFrame"
  31. OpenFrame.Parent = ScreenGui
  32. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  33. OpenFrame.Position = UDim2.new(0, 0, 0.510169506, 0)
  34. OpenFrame.Size = UDim2.new(0, 107, 0, 50)
  35.  
  36. open.Name = "open"
  37. open.Parent = OpenFrame
  38. open.BackgroundColor3 = Color3.new(1, 1, 1)
  39. open.Position = UDim2.new(-0.00196261704, 0, 0.0413573347, 0)
  40. open.Size = UDim2.new(0, 105, 0, 45)
  41. open.Font = Enum.Font.SourceSans
  42. open.Text = "Open Gui"
  43. open.TextColor3 = Color3.new(0, 0, 0)
  44. open.TextSize = 14
  45. open.MouseButton1Down:connect(function()
  46. OpenFrame.Visible = false
  47. main.Visible = true
  48. close.Visible = true
  49. end)
  50.  
  51. main.Name = "main"
  52. main.Parent = ScreenGui
  53. main.BackgroundColor3 = Color3.new(1, 1, 1)
  54. main.Position = UDim2.new(0.274924487, 0, 0.240677968, 0)
  55. main.Size = UDim2.new(0, 519, 0, 326)
  56. main.Active = true
  57. main.Draggable = true
  58. main.Visible = false
  59.  
  60. Info1.Name = "Info1"
  61. Info1.Parent = main
  62. Info1.BackgroundColor3 = Color3.new(1, 1, 1)
  63. Info1.Position = UDim2.new(-0.0732177272, 0, -0.0521472394, 0)
  64. Info1.Size = UDim2.new(0, 587, 0, 30)
  65. Info1.Font = Enum.Font.SourceSans
  66. Info1.Text = "Made by Tymiks2007"
  67. Info1.TextColor3 = Color3.new(0, 0, 0)
  68. Info1.TextSize = 14
  69.  
  70.  
  71. Info2.Name = "Info2"
  72. Info2.Parent = main
  73. Info2.BackgroundColor3 = Color3.new(1, 1, 1)
  74. Info2.Position = UDim2.new(-0.0732177272, 0, 0.99999994, 0)
  75. Info2.Size = UDim2.new(0, 587, 0, 30)
  76. Info2.Font = Enum.Font.SourceSans
  77. Info2.Text = "Enjoy ! [all credit for scipts go to their respectful owners]"
  78. Info2.TextColor3 = Color3.new(0, 0, 0)
  79. Info2.TextSize = 14
  80.  
  81.  
  82. btools.Name = "btools"
  83. btools.Parent = main
  84. btools.BackgroundColor3 = Color3.new(1, 1, 1)
  85. btools.Position = UDim2.new(0.0500963405, 0, 0.101226993, 0)
  86. btools.Size = UDim2.new(0, 135, 0, 37)
  87. btools.Font = Enum.Font.SourceSans
  88. btools.Text = "BTools"
  89. btools.TextColor3 = Color3.new(0, 0, 0)
  90. btools.TextSize = 14
  91. btools.MouseButton1Down:connect(function()
  92. local player = game.Players.LocalPlayer
  93. local mouse = player:GetMouse()
  94.  
  95. -- Objects
  96.  
  97. local ScreenGui = Instance.new("ScreenGui")
  98. local TextButton = Instance.new("TextButton")
  99. local On = Instance.new("StringValue")
  100.  
  101. -- Properties
  102.  
  103. ScreenGui.Parent = player.PlayerGui
  104.  
  105. TextButton.Parent = ScreenGui
  106. TextButton.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  107. TextButton.BorderSizePixel = 0
  108. TextButton.Position = UDim2.new(0, 0, 0.455743879, 0)
  109. TextButton.Size = UDim2.new(0, 186, 0, 35)
  110. TextButton.Font = Enum.Font.SourceSans
  111. TextButton.Text = "Btools (Off)"
  112. TextButton.TextColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  113. TextButton.TextScaled = true
  114. TextButton.TextSize = 14
  115. TextButton.TextWrapped = true
  116.  
  117.  
  118. On.Parent = TextButton
  119. On.Value = "Off"
  120.  
  121. -- Scripts
  122.  
  123. TextButton.MouseButton1Up:Connect(function()
  124. if On.Value == "Off" then
  125. On.Value = "On"
  126. TextButton.Text = "Btools (On)"
  127. else
  128. On.Value = "Off"
  129. TextButton.Text = "Btools (Off)"
  130. end
  131. end)
  132.  
  133. mouse.Button1Up:Connect(function()
  134. if On.Value == "Off" then
  135. print('btools off')
  136. else
  137. if mouse.Target.Locked == true then
  138. mouse.Target:Destroy()
  139. else
  140. mouse.Target:Destroy()
  141. end
  142. end
  143. end)
  144. end)
  145.  
  146. speedcity.Name = "speedcity"
  147. speedcity.Parent = main
  148. speedcity.BackgroundColor3 = Color3.new(1, 1, 1)
  149. speedcity.Position = UDim2.new(0.0500963405, 0, 0.457055211, 0)
  150. speedcity.Size = UDim2.new(0, 135, 0, 37)
  151. speedcity.Font = Enum.Font.SourceSans
  152. speedcity.Text = "Speed City Gui"
  153. speedcity.TextColor3 = Color3.new(0, 0, 0)
  154. speedcity.TextSize = 14
  155. speedcity.MouseButton1Down:connect(function()
  156. --V3rm: Scholler1
  157. local SpeedCityGUIforu = Instance.new("ScreenGui")
  158. local Main = Instance.new("Frame")
  159. Main.Active = true
  160. Main.Draggable = true
  161. local TextLabel = Instance.new("TextLabel")
  162. local title = Instance.new("TextLabel")
  163. local orbtp = Instance.new("TextButton")
  164. local walkspeed = Instance.new("TextButton")
  165. local TextBox = Instance.new("TextBox")
  166. local racewin = Instance.new("TextButton")
  167.  
  168. SpeedCityGUIforu.Name = "SpeedCityGUIforu"
  169. SpeedCityGUIforu.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  170. SpeedCityGUIforu.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  171.  
  172. Main.Name = "Main"
  173. Main.Parent = SpeedCityGUIforu
  174. Main.BackgroundColor3 = Color3.new(0.0352941, 0.0745098, 0.819608)
  175. Main.BorderColor3 = Color3.new(0.164706, 0.262745, 0.329412)
  176. Main.Size = UDim2.new(0, 300, 0, 250)
  177.  
  178. TextLabel.Parent = Main
  179. TextLabel.BackgroundColor3 = Color3.new(0, 0.745098, 0.121569)
  180. TextLabel.BackgroundTransparency = 1
  181. TextLabel.Position = UDim2.new(0.129999995, 0, 0.131999999, 0)
  182. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  183. TextLabel.Font = Enum.Font.Fantasy
  184. TextLabel.Text = "You can toggle everything (so they can be turned off too)!"
  185. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  186. TextLabel.TextScaled = true
  187. TextLabel.TextSize = 14
  188. TextLabel.TextWrapped = true
  189.  
  190. title.Name = "title"
  191. title.Parent = Main
  192. title.BackgroundColor3 = Color3.new(0, 0.745098, 0.121569)
  193. title.BackgroundTransparency = 1
  194. title.Position = UDim2.new(0.166666672, 0, 0, 0)
  195. title.Size = UDim2.new(0, 200, 0, 50)
  196. title.Font = Enum.Font.Fantasy
  197. title.Text = "Speed City GUI"
  198. title.TextColor3 = Color3.new(0, 0, 0)
  199. title.TextScaled = true
  200. title.TextSize = 14
  201. title.TextWrapped = true
  202.  
  203. orbtp.Name = "orbtp"
  204. orbtp.Parent = Main
  205. orbtp.BackgroundColor3 = Color3.new(0.176471, 0.533333, 0)
  206. orbtp.Position = UDim2.new(0.0199999996, 0, 0.432000011, 0)
  207. orbtp.Size = UDim2.new(0, 200, 0, 31)
  208. orbtp.Font = Enum.Font.SourceSans
  209. orbtp.Text = "Loop-teleport to orbs"
  210. orbtp.TextColor3 = Color3.new(0, 0, 0)
  211. orbtp.TextSize = 14
  212. orbtp.TextWrapped = true
  213.  
  214. walkspeed.Name = "walkspeed"
  215. walkspeed.Parent = Main
  216. walkspeed.BackgroundColor3 = Color3.new(0.176471, 0.533333, 0)
  217. walkspeed.Position = UDim2.new(0.0199999996, 0, 0.720000029, 0)
  218. walkspeed.Size = UDim2.new(0, 200, 0, 34)
  219. walkspeed.Font = Enum.Font.SourceSans
  220. walkspeed.Text = "Change walkspeed"
  221. walkspeed.TextColor3 = Color3.new(0, 0, 0)
  222. walkspeed.TextSize = 14
  223. walkspeed.TextWrapped = true
  224.  
  225. TextBox.Parent = walkspeed
  226. TextBox.BackgroundColor3 = Color3.new(0.156863, 1, 0.0980392)
  227. TextBox.Position = UDim2.new(1.04999995, 0, 0, 0)
  228. TextBox.Size = UDim2.new(0, 84, 0, 34)
  229. TextBox.Font = Enum.Font.SourceSans
  230. TextBox.Text = "1000"
  231. TextBox.TextColor3 = Color3.new(0, 0, 0)
  232. TextBox.TextSize = 14
  233.  
  234. racewin.Name = "racewin"
  235. racewin.Parent = Main
  236. racewin.BackgroundColor3 = Color3.new(0.176471, 0.533333, 0)
  237. racewin.Position = UDim2.new(0.0199999996, 0, 0.583999991, 0)
  238. racewin.Size = UDim2.new(0, 200, 0, 31)
  239. racewin.Font = Enum.Font.SourceSans
  240. racewin.Text = "Win race (press T if you want to win race)"
  241. racewin.TextColor3 = Color3.new(0, 0, 0)
  242. racewin.TextSize = 14
  243. racewin.TextWrapped = true
  244.  
  245. function SCRIPT_RQHW66_FAKESCRIPT()
  246. local script = Instance.new('LocalScript')
  247. script.Parent = orbtp
  248. script.Parent.MouseButton1Click:Connect(function()
  249. if _G.on == true then
  250. _G.on = false
  251. else
  252. _G.on = true
  253. end
  254. while _G.on do
  255. for i = 1, #game.Workspace.MainMap.Spawners:GetChildren() do
  256. wait()
  257. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.MainMap.Spawners:GetChildren()[i].CFrame
  258. print(i)
  259. end
  260. wait()
  261. end
  262. end)
  263.  
  264. end
  265. coroutine.resume(coroutine.create(SCRIPT_RQHW66_FAKESCRIPT))
  266. function SCRIPT_QJPD78_FAKESCRIPT()
  267. local script = Instance.new('LocalScript')
  268. script.Parent = walkspeed
  269. script.Parent.MouseButton1Click:Connect(function()
  270. if _G.ws == true then
  271. _G.ws = false
  272. else
  273. _G.ws = true
  274. end
  275. while _G.ws do
  276. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(script.Parent.TextBox.Text)
  277. wait()
  278. end
  279. end)
  280.  
  281. end
  282. coroutine.resume(coroutine.create(SCRIPT_QJPD78_FAKESCRIPT))
  283. function SCRIPT_TABP81_FAKESCRIPT()
  284. local script = Instance.new('LocalScript')
  285. script.Parent = racewin
  286. script.Parent.MouseButton1Click:Connect(function()
  287. function onKeyPress(actionName, userInputState, inputObject)
  288. if userInputState == Enum.UserInputState.Begin then
  289. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1161.29712, 506.368866, 9.96144867)
  290. wait(0.1)
  291. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(804.611328, 506.415558, -11.7966709)
  292. wait(0.1)
  293. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1169.11694, 522.630798, -33.6696053)
  294. end
  295. end
  296. local button = Enum.KeyCode.T -- change T for another key if you want
  297. game.ContextActionService:BindAction("keyPress", onKeyPress, false, button)
  298. end)
  299.  
  300. end
  301. coroutine.resume(coroutine.create(SCRIPT_TABP81_FAKESCRIPT))
  302. end)
  303.  
  304. btools2.Name = "btools2"
  305. btools2.Parent = main
  306. btools2.BackgroundColor3 = Color3.new(1, 1, 1)
  307. btools2.Position = UDim2.new(0.0500963405, 0, 0.282208592, 0)
  308. btools2.Size = UDim2.new(0, 135, 0, 37)
  309. btools2.Font = Enum.Font.SourceSans
  310. btools2.Text = "FE BTools"
  311. btools2.TextColor3 = Color3.new(0, 0, 0)
  312. btools2.TextSize = 14
  313. btools2.MouseButton1Down:connect(function()
  314. -- Objects
  315.  
  316. local FEBtoolsGUI = Instance.new("ScreenGui")
  317. local Opener = Instance.new("Frame")
  318. local Open = Instance.new("TextButton")
  319. local BtoolsGUI = Instance.new("Frame")
  320. local TopThing = Instance.new("Frame")
  321. local Azureez = Instance.new("TextLabel")
  322. local Btool = Instance.new("TextButton")
  323. local TextLabel = Instance.new("TextLabel")
  324. local Close = Instance.new("TextButton")
  325.  
  326. -- Properties
  327.  
  328. FEBtoolsGUI.Name = "FEBtoolsGUI"
  329. FEBtoolsGUI.Parent = game.CoreGui
  330.  
  331. Opener.Name = "Opener"
  332. Opener.Parent = FEBtoolsGUI
  333. Opener.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  334. Opener.Position = UDim2.new(0, 0, 0.762913883, 0)
  335. Opener.Size = UDim2.new(0, 260, 0, 86)
  336.  
  337. Open.Name = "Open"
  338. Open.Parent = Opener
  339. Open.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  340. Open.BorderSizePixel = 3
  341. Open.Size = UDim2.new(0, 260, 0, 86)
  342. Open.Font = Enum.Font.SciFi
  343. Open.Text = "Open"
  344. Open.TextColor3 = Color3.new(1, 1, 1)
  345. Open.TextSize = 21
  346.  
  347. BtoolsGUI.Name = "BtoolsGUI"
  348. BtoolsGUI.Parent = FEBtoolsGUI
  349. BtoolsGUI.Active = true
  350. BtoolsGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  351. BtoolsGUI.Draggable = true
  352. BtoolsGUI.Position = UDim2.new(0.765919268, 0, 0, 0)
  353. BtoolsGUI.Size = UDim2.new(0, 261, 0, 444)
  354. BtoolsGUI.Visible = false
  355.  
  356. TopThing.Name = "TopThing"
  357. TopThing.Parent = BtoolsGUI
  358. TopThing.BackgroundColor3 = Color3.new(0, 0, 0)
  359. TopThing.Size = UDim2.new(0, 261, 0, 82)
  360.  
  361. Azureez.Name = "ackaaaaa"
  362. Azureez.Parent = BtoolsGUI
  363. Azureez.BackgroundColor3 = Color3.new(1, 1, 1)
  364. Azureez.BackgroundTransparency = 999999995904
  365. Azureez.Size = UDim2.new(0, 200, 0, 82)
  366. Azureez.Font = Enum.Font.SciFi
  367. Azureez.Text = "Made by Azurez"
  368. Azureez.TextColor3 = Color3.new(1, 1, 1)
  369. Azureez.TextSize = 14
  370.  
  371. Btool.Name = "Btool"
  372. Btool.Parent = BtoolsGUI
  373. Btool.BackgroundColor3 = Color3.new(0, 0, 0)
  374. Btool.Position = UDim2.new(0.116858236, 0, 0.369098693, 0)
  375. Btool.Size = UDim2.new(0, 200, 0, 50)
  376. Btool.Font = Enum.Font.SciFi
  377. Btool.Text = "FE Btools *Some Games!*"
  378. Btool.TextColor3 = Color3.new(1, 1, 1)
  379. Btool.TextSize = 14
  380.  
  381. TextLabel.Parent = BtoolsGUI
  382. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  383. TextLabel.BackgroundTransparency = 9999999827968
  384. TextLabel.Position = UDim2.new(0.118773945, 0, 0.5, 0)
  385. TextLabel.Size = UDim2.new(0, 200, 0, 130)
  386. TextLabel.Font = Enum.Font.SciFi
  387. TextLabel.Text = "More Soon!"
  388. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  389. TextLabel.TextSize = 27
  390.  
  391. Close.Name = "Close"
  392. Close.Parent = BtoolsGUI
  393. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  394. Close.BackgroundTransparency = 999999995904
  395. Close.Position = UDim2.new(0.743295014, 0, -0.0171673764, 0)
  396. Close.Size = UDim2.new(0, 94, 0, 50)
  397. Close.Font = Enum.Font.SciFi
  398. Close.Text = "X"
  399. Close.TextColor3 = Color3.new(1, 1, 1)
  400. Close.TextSize = 25
  401.  
  402. Open.MouseButton1Down:connect(function()
  403. game.CoreGui.FEBtoolsGUI.Opener.Visible = false
  404. game.CoreGui.FEBtoolsGUI.BtoolsGUI.Visible = true
  405. end)
  406.  
  407. Close.MouseButton1Down:connect(function()
  408. game.CoreGui.FEBtoolsGUI.Opener.Visible = true
  409. game.CoreGui.FEBtoolsGUI.BtoolsGUI.Visible = false
  410. end)
  411.  
  412. Btool.MouseButton1Down:connect(function()
  413. if workspace:FindFirstChild'GiveSystem' then
  414. if workspace.GiveSystem:FindFirstChild'GiveItem' then
  415. maind = workspace.GiveSystem.GiveItem
  416. end
  417. end
  418. tool = Instance.new'Tool'
  419. me = game:GetService'Players'.LocalPlayer
  420. tool.RequiresHandle = false
  421. tool.TextureId = 'http://www.roblox.com/asset/?id=12223874'
  422. tool.Name = 'Delete'
  423. tool.Parent = me.Backpack
  424. buttonf = nil
  425. tool.Equipped:connect(function()
  426. local m = game:GetService'Players'.LocalPlayer:GetMouse()
  427. m.Icon = 'rbxasset://textures/HammerCursor.png'
  428. buttonf = m.Button1Down:connect(function()
  429. if m.Target == nil then return end
  430. local ob = m.Target
  431. if ob:IsA'BasePart' or ob:IsA'WedgePart' then
  432. if ob:IsDescendantOf(me.Character) then return end
  433. m.Icon = 'rbxasset://textures/HammerOverCursor.png'
  434. local ex = Instance.new'Explosion'
  435. ex.BlastRadius = 0
  436. ex.Position = ob.Position
  437. ex.Parent = workspace
  438. maind:FireServer(workspace, ob)
  439. wait(0.3)
  440. m.Icon = 'rbxasset://textures/HammerCursor.png'
  441. end
  442. end)
  443. end)
  444. tool.Unequipped:connect(function()
  445. if buttonf ~= nil then
  446. buttonf:Disconnect()
  447. buttonf = nil
  448. end
  449. local m = game:GetService'Players'.LocalPlayer:GetMouse()
  450. m.Icon = ''
  451. end)
  452. end)
  453. end)
  454.  
  455. teleport.Name = "teleport"
  456. teleport.Parent = main
  457. teleport.BackgroundColor3 = Color3.new(1, 1, 1)
  458. teleport.Position = UDim2.new(0.0500963405, 0, 0.825153351, 0)
  459. teleport.Size = UDim2.new(0, 135, 0, 37)
  460. teleport.Font = Enum.Font.SourceSans
  461. teleport.Text = "Teleport press q"
  462. teleport.TextColor3 = Color3.new(0, 0, 0)
  463. teleport.TextSize = 14
  464. teleport.MouseButton1Down:connect(function()
  465. plr = game.Players.LocalPlayer
  466.  
  467. hum = plr.Character.HumanoidRootPart
  468.  
  469. mouse = plr:GetMouse()
  470.  
  471.  
  472.  
  473. mouse.KeyDown:connect(function(key)
  474.  
  475. if key == "q" then
  476.  
  477. if mouse.Target then
  478.  
  479. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  480.  
  481. end
  482.  
  483. end
  484. end)
  485. end)
  486.  
  487. robbery.Name = "robbery"
  488. robbery.Parent = main
  489. robbery.BackgroundColor3 = Color3.new(1, 1, 1)
  490. robbery.Position = UDim2.new(0.0500963405, 0, 0.641104341, 0)
  491. robbery.Size = UDim2.new(0, 135, 0, 37)
  492. robbery.Font = Enum.Font.SourceSans
  493. robbery.Text = "Robbery Simulator OP Gui"
  494. robbery.TextColor3 = Color3.new(0, 0, 0)
  495. robbery.TextSize = 14
  496. robbery.MouseButton1Down:connect(function()
  497. -- Farewell Infortality.
  498. -- Version: 2.82
  499. -- Instances:
  500. local ScreenGui = Instance.new("ScreenGui")
  501. local CreditsFrame = Instance.new("Frame")
  502. local Title = Instance.new("TextLabel")
  503. local MainGui = Instance.new("TextButton")
  504. local TextLabel = Instance.new("TextLabel")
  505. local TextLabel_2 = Instance.new("TextLabel")
  506. local MainFrame = Instance.new("Frame")
  507. local Title_2 = Instance.new("TextLabel")
  508. local credits = Instance.new("TextButton")
  509. local bestglove = Instance.new("TextButton")
  510. local bestbag = Instance.new("TextButton")
  511. local allkeys = Instance.new("TextButton")
  512. local close = Instance.new("TextButton")
  513. local open = Instance.new("TextButton")
  514. --Properties:
  515. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  516. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  517.  
  518. CreditsFrame.Name = "CreditsFrame"
  519. CreditsFrame.Parent = ScreenGui
  520. CreditsFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  521. CreditsFrame.BackgroundTransparency = 0.10000000149012
  522. CreditsFrame.BorderColor3 = Color3.new(0, 0, 0)
  523. CreditsFrame.BorderSizePixel = 0
  524. CreditsFrame.Position = UDim2.new(0.31941396, 0, 0.134289429, 0)
  525. CreditsFrame.Size = UDim2.new(0, 464, 0, 323)
  526. CreditsFrame.Visible = false
  527.  
  528. Title.Name = "Title"
  529. Title.Parent = CreditsFrame
  530. Title.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  531. Title.BackgroundTransparency = 0.34000000357628
  532. Title.BorderSizePixel = 0
  533. Title.Size = UDim2.new(0, 464, 0, 50)
  534. Title.Font = Enum.Font.SourceSans
  535. Title.Text = "Robbery Fucker 1.0"
  536. Title.TextColor3 = Color3.new(0.0745098, 0.0901961, 1)
  537. Title.TextSize = 14
  538.  
  539. MainGui.Name = "MainGui"
  540. MainGui.Parent = CreditsFrame
  541. MainGui.BackgroundColor3 = Color3.new(1, 1, 1)
  542. MainGui.BackgroundTransparency = 1
  543. MainGui.Position = UDim2.new(0.00215517241, 0, 0.845201254, 0)
  544. MainGui.Size = UDim2.new(0, 122, 0, 50)
  545. MainGui.Font = Enum.Font.SourceSans
  546. MainGui.Text = "Main GUI"
  547. MainGui.TextColor3 = Color3.new(0.992157, 0, 0.129412)
  548. MainGui.TextSize = 14
  549.  
  550. MainGui.MouseButton1Down:connect(function()
  551. CreditsFrame.Visible = false
  552. MainFrame.Visible = true
  553. end)
  554.  
  555.  
  556.  
  557.  
  558. TextLabel.Parent = CreditsFrame
  559. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  560. TextLabel.BackgroundTransparency = 1
  561. TextLabel.Position = UDim2.new(0.303879321, 0, 0.278637767, 0)
  562. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  563. TextLabel.Font = Enum.Font.SourceSans
  564. TextLabel.Text = "Credits to ItzHxS(v3rm) for the scripts"
  565. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  566. TextLabel.TextSize = 14
  567.  
  568. TextLabel_2.Parent = CreditsFrame
  569. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  570. TextLabel_2.BackgroundTransparency = 1
  571. TextLabel_2.Position = UDim2.new(0.303879321, 0, 0.421052635, 0)
  572. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  573. TextLabel_2.Font = Enum.Font.SourceSans
  574. TextLabel_2.Text = "Credits to heccy(v3rm) for making the ugly as GUI"
  575. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  576. TextLabel_2.TextSize = 14
  577.  
  578. MainFrame.Name = "MainFrame"
  579. MainFrame.Parent = ScreenGui
  580. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  581. MainFrame.BackgroundTransparency = 0.10000000149012
  582. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  583. MainFrame.Position = UDim2.new(0.320146501, 0, 0.134289443, 0)
  584. MainFrame.Size = UDim2.new(0, 464, 0, 323)
  585. MainFrame.Visible = false
  586.  
  587. Title_2.Name = "Title"
  588. Title_2.Parent = MainFrame
  589. Title_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  590. Title_2.BackgroundTransparency = 0.34000000357628
  591. Title_2.BorderSizePixel = 0
  592. Title_2.Size = UDim2.new(0, 464, 0, 50)
  593. Title_2.Font = Enum.Font.SourceSans
  594. Title_2.Text = "Robbery Fucker 1.0"
  595. Title_2.TextColor3 = Color3.new(0.0745098, 0.0901961, 1)
  596. Title_2.TextSize = 14
  597.  
  598. credits.Name = "credits"
  599. credits.Parent = MainFrame
  600. credits.BackgroundColor3 = Color3.new(1, 1, 1)
  601. credits.BackgroundTransparency = 1
  602. credits.Position = UDim2.new(0.696747601, 0, 0.845201254, 0)
  603. credits.Size = UDim2.new(0, 142, 0, 50)
  604. credits.Font = Enum.Font.SourceSans
  605. credits.Text = "Credits"
  606. credits.TextColor3 = Color3.new(0.992157, 0, 0.129412)
  607. credits.TextSize = 14
  608.  
  609. credits.MouseButton1Down:connect(function()
  610. MainFrame.Visible = false
  611. CreditsFrame.Visible = true
  612. end)
  613.  
  614.  
  615.  
  616.  
  617. bestglove.Name = "bestglove"
  618. bestglove.Parent = MainFrame
  619. bestglove.BackgroundColor3 = Color3.new(1, 1, 1)
  620. bestglove.BackgroundTransparency = 1
  621. bestglove.Position = UDim2.new(0.284482747, 0, 0.421052635, 0)
  622. bestglove.Size = UDim2.new(0, 200, 0, 50)
  623. bestglove.Font = Enum.Font.SourceSans
  624. bestglove.Text = "Get Best Glove"
  625. bestglove.TextColor3 = Color3.new(1, 0.180392, 0.933333)
  626. bestglove.TextSize = 14
  627.  
  628. bestglove.MouseButton1Down:connect(function()
  629. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.UserService.AddInventoryItem:InvokeServer("INFINITY_GAUNTLET", "GLOVE")
  630. end)
  631.  
  632.  
  633.  
  634.  
  635. bestbag.Name = "bestbag"
  636. bestbag.Parent = MainFrame
  637. bestbag.BackgroundColor3 = Color3.new(1, 1, 1)
  638. bestbag.BackgroundTransparency = 1
  639. bestbag.Position = UDim2.new(0.284482747, 0, 0.575851381, 0)
  640. bestbag.Size = UDim2.new(0, 200, 0, 50)
  641. bestbag.Font = Enum.Font.SourceSans
  642. bestbag.Text = "Get Best Bag"
  643. bestbag.TextColor3 = Color3.new(1, 0.180392, 0.933333)
  644. bestbag.TextSize = 14
  645.  
  646. bestbag.MouseButton1Down:connect(function()
  647. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.UserService.AddInventoryItem:InvokeServer("TREASURE_BAG", "BAG")
  648. end)
  649.  
  650.  
  651.  
  652.  
  653. allkeys.Name = "allkeys"
  654. allkeys.Parent = MainFrame
  655. allkeys.BackgroundColor3 = Color3.new(1, 1, 1)
  656. allkeys.BackgroundTransparency = 1
  657. allkeys.Position = UDim2.new(0.284482747, 0, 0.207430333, 0)
  658. allkeys.Size = UDim2.new(0, 200, 0, 50)
  659. allkeys.Font = Enum.Font.SourceSans
  660. allkeys.Text = "Get All Keys"
  661. allkeys.TextColor3 = Color3.new(1, 0.180392, 0.933333)
  662. allkeys.TextSize = 14
  663.  
  664. allkeys.MouseButton1Down:connect(function()
  665. local Remote = game.ReplicatedStorage.Aero.AeroRemoteServices.UserService['AddInventoryItem']
  666.  
  667. local Arguments = {
  668. [1] = "JEWELRY_STORE_KEY",
  669. [2] = "KEY"
  670. }
  671.  
  672. Remote:InvokeServer(unpack(Arguments))
  673. wait()
  674. local Remote = game.ReplicatedStorage.Aero.AeroRemoteServices.UserService['AddInventoryItem']
  675.  
  676. local Arguments = {
  677. [1] = "CANDY_STORE_KEY",
  678. [2] = "KEY"
  679. }
  680.  
  681. Remote:InvokeServer(unpack(Arguments))
  682. wait()
  683. local Remote = game.ReplicatedStorage.Aero.AeroRemoteServices.UserService['AddInventoryItem']
  684.  
  685. local Arguments = {
  686. [1] = "BALDIS_SCHOOL_KEY",
  687. [2] = "KEY"
  688. }
  689.  
  690. Remote:InvokeServer(unpack(Arguments))
  691. wait()
  692. local Remote = game.ReplicatedStorage.Aero.AeroRemoteServices.UserService['AddInventoryItem']
  693.  
  694. local Arguments = {
  695. [1] = "HELLO_NEIGHBOR_KEY",
  696. [2] = "KEY"
  697. }
  698.  
  699. Remote:InvokeServer(unpack(Arguments))
  700. wait()
  701. local Remote = game.ReplicatedStorage.Aero.AeroRemoteServices.UserService['AddInventoryItem']
  702.  
  703. local Arguments = {
  704. [1] = "CAR_DEALERSHIP_KEY",
  705. [2] = "KEY"
  706. }
  707.  
  708. Remote:InvokeServer(unpack(Arguments))
  709. wait()
  710. local Remote = game.ReplicatedStorage.Aero.AeroRemoteServices.UserService['AddInventoryItem']
  711.  
  712. local Arguments = {
  713. [1] = "TOY_STORE_KEY",
  714. [2] = "KEY"
  715. }
  716.  
  717. Remote:InvokeServer(unpack(Arguments))
  718. wait()
  719. local Remote = game.ReplicatedStorage.Aero.AeroRemoteServices.UserService['AddInventoryItem']
  720.  
  721. local Arguments = {
  722. [1] = "PET_STORE_KEY",
  723. [2] = "KEY"
  724. }
  725.  
  726. Remote:InvokeServer(unpack(Arguments))
  727. end)
  728.  
  729.  
  730.  
  731.  
  732. close.Name = "close"
  733. close.Parent = MainFrame
  734. close.BackgroundColor3 = Color3.new(1, 1, 1)
  735. close.BackgroundTransparency = 1
  736. close.Position = UDim2.new(0.90975678, 0, 0, 0)
  737. close.Size = UDim2.new(0, 43, 0, 34)
  738. close.Font = Enum.Font.SourceSans
  739. close.Text = "X"
  740. close.TextColor3 = Color3.new(0.972549, 0.0196078, 0.0196078)
  741. close.TextSize = 20
  742.  
  743. close.MouseButton1Down:connect(function()
  744. MainFrame.Visible = false
  745. end)
  746.  
  747.  
  748.  
  749.  
  750. open.Name = "open"
  751. open.Parent = ScreenGui
  752. open.BackgroundColor3 = Color3.new(1, 1, 0)
  753. open.Position = UDim2.new(0, 0, 0.876140833, 0)
  754. open.Size = UDim2.new(0, 200, 0, 50)
  755. open.Font = Enum.Font.SourceSans
  756. open.Text = "Open GUI"
  757. open.TextColor3 = Color3.new(0, 0, 0)
  758. open.TextSize = 14
  759.  
  760. open.MouseButton1Down:connect(function()
  761. MainFrame.Visible = true
  762. end)
  763.  
  764.  
  765.  
  766. -- Scripts:
  767. function SCRIPT_MXKQ89_FAKESCRIPT() -- open.LocalScript
  768. local script = Instance.new('LocalScript')
  769. script.Parent = open
  770. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  771.  
  772. counter = 0
  773.  
  774. while wait(0.1) do
  775. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  776. counter = counter + 0.01
  777. end
  778.  
  779. end
  780. coroutine.resume(coroutine.create(SCRIPT_MXKQ89_FAKESCRIPT))
  781. end)
  782.  
  783. noobsimskill.Name = "noobsimskill"
  784. noobsimskill.Parent = main
  785. noobsimskill.BackgroundColor3 = Color3.new(1, 1, 1)
  786. noobsimskill.Position = UDim2.new(0.369942188, 0, 0.101226993, 0)
  787. noobsimskill.Size = UDim2.new(0, 135, 0, 37)
  788. noobsimskill.Font = Enum.Font.SourceSans
  789. noobsimskill.Text = "Noob Simulator 100B skill"
  790. noobsimskill.TextColor3 = Color3.new(0, 0, 0)
  791. noobsimskill.TextSize = 14
  792. noobsimskill.MouseButton1Down:connect(function()
  793. game.ReplicatedStorage.Events.AddSkillEvent:FireServer(100000000000,100000000000)
  794. end)
  795.  
  796. buildaboat.Name = "buildaboat"
  797. buildaboat.Parent = main
  798. buildaboat.BackgroundColor3 = Color3.new(1, 1, 1)
  799. buildaboat.Position = UDim2.new(0.369942188, 0, 0.457055211, 0)
  800. buildaboat.Size = UDim2.new(0, 135, 0, 37)
  801. buildaboat.Font = Enum.Font.SourceSans
  802. buildaboat.Text = "Build a Boat Gui"
  803. buildaboat.TextColor3 = Color3.new(0, 0, 0)
  804. buildaboat.TextSize = 14
  805. buildaboat.MouseButton1Down:connect(function()
  806. --Local
  807.  
  808. local MENU = Instance.new("ScreenGui")
  809. local GUI = Instance.new("Frame")
  810. local title = Instance.new("TextLabel")
  811. local tb = Instance.new("TextButton")
  812. local tr = Instance.new("TextButton")
  813. local truss = Instance.new("TextButton")
  814. local wedge = Instance.new("TextButton")
  815.  
  816. --Basics
  817.  
  818. MENU.Name = "BABFT"
  819. MENU.Parent = game.Players.LocalPlayer.PlayerGui
  820.  
  821. GUI.Name = "GUI"
  822. GUI.Parent = MENU
  823. GUI.Active = true
  824. GUI.Draggable = true
  825. GUI.Position = UDim2.new(0.009, 326, 0.412, -32)
  826. GUI.Size = UDim2.new(0, 142, 0, 279)
  827. GUI.Style = Enum.FrameStyle.RobloxRound
  828.  
  829. title.Name = "Title"
  830. title.Parent = GUI
  831. title.Position = UDim2.new(0.021, 5, -0.007, 0)
  832. title.Size = UDim2.new(0, 106, 0, 61)
  833. title.BackgroundTransparency = 1
  834. title.Text = "BABFT GUI by I low"
  835. title.TextSize = 18
  836. title.TextScaled = true
  837. title.FontSize = Enum.FontSize.Size18
  838. title.TextSize = 18
  839. title.Font = Enum.Font.Cartoon
  840. title.TextColor3 = Color3.new(255, 0, 0)
  841.  
  842. --Buttons
  843.  
  844. tb.Name = "TitaniumBlock"
  845. tb.Parent = GUI
  846. tb.Text = "Titanium Block"
  847. tb.Position = UDim2.new(0.12, -15, 0.412, -45)
  848. tb.Size = UDim2.new(0, 125, 0, 40)
  849. tb.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  850. tb.FontSize = Enum.FontSize.Size18
  851. tb.TextSize = 13
  852.  
  853. tr.Name = "TitaniumRod"
  854. tr.Parent = GUI
  855. tr.Text = "Titanium Rod"
  856. tr.Position = UDim2.new(0.12, -15, 0.412, 5)
  857. tr.Size = UDim2.new(0, 125, 0, 40)
  858. tr.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  859. tr.FontSize = Enum.FontSize.Size18
  860. tr.TextSize = 13
  861.  
  862. truss.Name = "Truss"
  863. truss.Parent = GUI
  864. truss.Text = "Truss"
  865. truss.Position = UDim2.new(0.12, -15, 0.412, 55)
  866. truss.Size = UDim2.new(0, 125, 0, 40)
  867. truss.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  868. truss.FontSize = Enum.FontSize.Size18
  869. truss.TextSize = 13
  870.  
  871. wedge.Name = "Wedge"
  872. wedge.Parent = GUI
  873. wedge.Text = "Wedge"
  874. wedge.Position = UDim2.new(0.12, -15, 0.412, 105)
  875. wedge.Size = UDim2.new(0, 125, 0, 40)
  876. wedge.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  877. wedge.FontSize = Enum.FontSize.Size18
  878. wedge.TextSize = 13
  879.  
  880. --Functions
  881.  
  882. tb.MouseButton1Click:connect(function()
  883. game.Players.LocalPlayer.Data.TitaniumBlock.Value = 2e9
  884. end)
  885.  
  886. tr.MouseButton1Click:connect(function()
  887. game.Players.LocalPlayer.Data.TitaniumRod.Value = 2e9
  888. end)
  889.  
  890. truss.MouseButton1Click:connect(function()
  891. game.Players.LocalPlayer.Data.Truss.Value = 2e9
  892. end)
  893.  
  894. wedge.MouseButton1Click:connect(function()
  895. game.Players.LocalPlayer.Data.Wedge.Value = 2e9
  896. end)
  897.  
  898.  
  899. --Printing
  900.  
  901. print("Welcome! This gui was made by I low!")
  902. end)
  903.  
  904. r2d.Name = "r2d"
  905. r2d.Parent = main
  906. r2d.BackgroundColor3 = Color3.new(1, 1, 1)
  907. r2d.Position = UDim2.new(0.369942188, 0, 0.282208592, 0)
  908. r2d.Size = UDim2.new(0, 135, 0, 37)
  909. r2d.Font = Enum.Font.SourceSans
  910. r2d.Text = "Reason 2 Die Gui"
  911. r2d.TextColor3 = Color3.new(0, 0, 0)
  912. r2d.TextSize = 14
  913. r2d.MouseButton1Down:connect(function()
  914. local plr = game:GetService("Players").LocalPlayer
  915.  
  916. local gui = Instance.new("ScreenGui", game:GetService("CoreGui"))
  917.  
  918. local function Create(classname)
  919. return function(t)
  920. local ins = Instance.new(classname)
  921. for i,v in pairs(t) do
  922. ins[i] = v
  923. end
  924. return ins
  925. end
  926. end
  927.  
  928. local function Tween(obj, t, props)
  929. local TweenService = game:GetService("TweenService")
  930. local ti = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  931. local tween = TweenService:Create(obj,ti,props)
  932. tween:Play()
  933. return tween
  934. end
  935.  
  936. --gui converters are for noobz-
  937. local main = Create "Frame" {
  938. Parent = gui,
  939. ClipsDescendants = true,
  940. Size = UDim2.new(0,400,0,300),
  941. BackgroundColor3 = Color3.fromRGB(120, 120, 120),
  942. BorderSizePixel = 1,
  943. Position = UDim2.new(0.5,-200,0.5,-150),
  944. Draggable = true,
  945. Active = true,
  946. }
  947.  
  948. local topbar = Create "TextLabel" {
  949. BackgroundColor3 = Color3.fromRGB(106, 106, 106),
  950. BorderSizePixel = 0,
  951. Position = UDim2.new(0,0,0,0),
  952. Size = UDim2.new(1,0,0,50),
  953. TextColor3 = Color3.new(1,1,1),
  954. TextSize = 40,
  955. Text = "Reason 2 Die Gui",
  956. Font = Enum.Font.SourceSansSemibold,
  957. TextStrokeTransparency = 0.5,
  958. TextStrokeColor3 = Color3.new(0,0,0),
  959. Parent = main
  960. }
  961.  
  962. local function CreateButton(text, parent)
  963. return Create "TextButton" {
  964. BackgroundColor3 = Color3.fromRGB(106, 106, 106),
  965. BorderColor3 = Color3.new(0,0,0),
  966. BorderSizePixel = 1,
  967. Size = UDim2.new(0,80,0,40),
  968. Font = Enum.Font.SourceSansSemibold,
  969. Text = text,
  970. TextColor3 = Color3.new(1,1,1),
  971. TextSize = 18,
  972. TextStrokeTransparency = 0.5,
  973. TextStrokeColor3 = Color3.new(0,0,0),
  974. Parent = parent
  975. }
  976. end
  977.  
  978. local SpeedHack = CreateButton("Speed Hack\n(z)", main)
  979. SpeedHack.Position = UDim2.new(0,10,0,70)
  980. local SpeedHackClick = function()
  981. local active = SpeedHack.BackgroundColor3 == Color3.fromRGB(85, 255, 127) and true or false
  982. SpeedHack.BackgroundColor3 = active and Color3.fromRGB(106, 106, 106) or Color3.fromRGB(85, 255, 127)
  983. plr.Character.Humanoid.WalkSpeed = active and 16 or 100
  984. end
  985. SpeedHack.MouseButton1Click:connect(SpeedHackClick)
  986.  
  987. local HighJump = CreateButton("High Jump\n(x)", main)
  988. HighJump.Position = UDim2.new(0,110,0,70)
  989. local HighJumpClick = function()
  990. local active = HighJump.BackgroundColor3 == Color3.fromRGB(85, 255, 127) and true or false
  991. HighJump.BackgroundColor3 = active and Color3.fromRGB(106, 106, 106) or Color3.fromRGB(85, 255, 127)
  992. plr.Character.Humanoid.JumpPower = active and 50 or 100
  993. end
  994. HighJump.MouseButton1Click:connect(HighJumpClick)
  995.  
  996. local InfEnergyActive = false
  997. local InfEnergy = CreateButton("Infinite Energy\n(c)", main)
  998. InfEnergy.Position = UDim2.new(0,210,0,70)
  999. InfEnergy.Size = UDim2.new(0,100,0,40)
  1000. local InfEnergyClick = function()
  1001. local active = InfEnergy.BackgroundColor3 == Color3.fromRGB(85, 255, 127) and true or false
  1002. InfEnergy.BackgroundColor3 = active and Color3.fromRGB(106, 106, 106) or Color3.fromRGB(85, 255, 127)
  1003. InfEnergyActive = not active
  1004. end
  1005. InfEnergy.MouseButton1Click:connect(InfEnergyClick)
  1006.  
  1007. local NoClipEnabled = false
  1008. local NoClip = CreateButton("NoClip\n(v)", main)
  1009. NoClip.Position = UDim2.new(0,330,0,70)
  1010. NoClip.Size = UDim2.new(0,60,0,40)
  1011. local NoClipClick = function()
  1012. local active = NoClip.BackgroundColor3 == Color3.fromRGB(85, 255, 127) and true or false
  1013. NoClip.BackgroundColor3 = active and Color3.fromRGB(106, 106, 106) or Color3.fromRGB(85, 255, 127)
  1014. NoClipEnabled = not active
  1015. end
  1016.  
  1017. plr.CharacterAdded:connect(function(char)
  1018. char:WaitForChild"Humanoid".Changed:connect(function(prop)
  1019. if prop == "WalkSpeed" and SpeedHack.BackgroundColor3 == Color3.fromRGB(85, 255, 127) and char.Humanoid.WalkSpeed ~= 200 then
  1020. char.Humanoid.WalkSpeed = 100
  1021. elseif prop == "JumpPower" and HighJump.BackgroundColor3 == Color3.fromRGB(85, 255, 127) and char.Humanoid.JumpPower ~= 200 then
  1022. char.Humanoid.JumpPower = 100
  1023. end
  1024. end)
  1025. if SpeedHack.BackgroundColor3 == Color3.fromRGB(85, 255, 127) then
  1026. char:WaitForChild"Humanoid".WalkSpeed = 100
  1027. end
  1028. if HighJump.BackgroundColor3 == Color3.fromRGB(85, 255, 127) then
  1029. char:WaitForChild"Humanoid".JumpPower = 100
  1030. end
  1031. end)
  1032.  
  1033. local TransparencyTweens = {}
  1034. main.MouseLeave:connect(function()
  1035. spawn(function()
  1036. local bool = false
  1037. local ev = main.MouseEnter:connect(function()
  1038. bool = true
  1039. end)
  1040. wait(1)
  1041. ev:Disconnect()
  1042. if bool then return end
  1043. for i,v in pairs(TransparencyTweens) do
  1044. v:Pause()
  1045. end
  1046. TransparencyTweens = {}
  1047. for i,v in pairs(main:GetDescendants()) do
  1048. if v.Visible then
  1049. local totween = {}
  1050. if v.ClassName:sub(1,4) == "Text" then
  1051. totween.TextTransparency = 0.7
  1052. end
  1053. if v.BackgroundTransparency ~= 1 then
  1054. totween.BackgroundTransparency = 0.7
  1055. end
  1056. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  1057. end
  1058. end
  1059. main:TweenSize(UDim2.new(0,400,0,50),nil,nil,nil,true)
  1060. end)
  1061. end)
  1062. main.MouseEnter:connect(function()
  1063. for i,v in pairs(TransparencyTweens) do
  1064. v:Pause()
  1065. end
  1066. TransparencyTweens = {}
  1067. for i,v in pairs(main:GetDescendants()) do
  1068. if v.Visible then
  1069. local totween = {}
  1070. if v.ClassName:sub(1,4) == "Text" then
  1071. totween.TextTransparency = 0
  1072. end
  1073. if v.BackgroundTransparency ~= 1 then
  1074. totween.BackgroundTransparency = 0
  1075. end
  1076. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  1077. end
  1078. end
  1079. main:TweenSize(UDim2.new(0,400,0,300),nil,nil,nil,true)
  1080. end)
  1081.  
  1082. --tracers--
  1083. local Tracers = {}
  1084.  
  1085. local function AddLasso(p,team)
  1086. if not Tracers[team.Name] then return end
  1087. if p == plr then return end
  1088. spawn(function()
  1089. if p.Character then
  1090. local l = Instance.new("SelectionPartLasso")
  1091. l.Parent = p.Character
  1092. l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid"
  1093. l.Part = plr.Character:WaitForChild"HumanoidRootPart"
  1094. l.Visible = true
  1095. l.Color3 = team.TeamColor.Color
  1096. for i=0,5 do
  1097. local sg = Instance.new("SurfaceGui")
  1098. sg.Face = i
  1099. sg.Parent = p.Character
  1100. sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart"
  1101. sg.AlwaysOnTop = true
  1102. local f = Instance.new("Frame", sg)
  1103. f.Size = UDim2.new(1,0,1,0)
  1104. f.BorderSizePixel = 0
  1105. f.BackgroundColor3 = team.TeamColor.Color
  1106. f.BackgroundTransparency = 0.5
  1107. end
  1108. end
  1109. end)
  1110. end
  1111.  
  1112. local function RemoveLasso(p)
  1113. if not p.Character then return end
  1114. for i,v in pairs(p.Character:GetDescendants()) do
  1115. if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then
  1116. v:Destroy()
  1117. end
  1118. end
  1119. end
  1120.  
  1121. for _,team in pairs(game:GetService("Teams"):GetChildren()) do
  1122. team.PlayerAdded:connect(function(p)
  1123. AddLasso(p,team)
  1124. end)
  1125.  
  1126. team.PlayerRemoved:connect(function(p)
  1127. RemoveLasso(p)
  1128. end)
  1129. end
  1130.  
  1131. function ToggleTracers(team, bool)
  1132. Tracers[team] = bool
  1133. local t = game:GetService("Teams"):FindFirstChild(team)
  1134. if not t then return end
  1135. for i,v in pairs(t:GetPlayers()) do
  1136. if bool then
  1137. AddLasso(v,t)
  1138. else
  1139. RemoveLasso(v)
  1140. end
  1141. end
  1142. end
  1143.  
  1144. local function CharAdded(plr, char)
  1145. if Tracers[tostring(plr.Team)] then
  1146. AddLasso(plr,plr.Team)
  1147. end
  1148. end
  1149.  
  1150. local function PlrAdded(plr)
  1151. plr.CharacterAdded:connect(function(char)
  1152. CharAdded(plr, char)
  1153. end)
  1154. if plr.Character then
  1155. CharAdded(plr, plr.Character)
  1156. end
  1157. end
  1158.  
  1159. game:GetService("Players").PlayerAdded:connect(PlrAdded)
  1160. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  1161. PlrAdded(v)
  1162. end
  1163.  
  1164. local TracersBtn = CreateButton("Tracers: None\n(b)", main)
  1165. TracersBtn.Size = UDim2.new(0,140,0,40)
  1166. TracersBtn.Position = UDim2.new(0,10,0,130)
  1167. local TracersBtnClick = function()
  1168. local curr = TracersBtn.Text:sub(10)
  1169. if curr ~= "None" then
  1170. ToggleTracers(curr, false)
  1171. end
  1172. local teams = {"None", "Survivior", "Zombie"}
  1173. local new = ""
  1174. for i,v in pairs(teams) do
  1175. if v == curr then
  1176. new = teams[i + 1] or teams[1]
  1177. end
  1178. end
  1179. if new ~= "None" then
  1180. ToggleTracers(new, true)
  1181. end
  1182. TracersBtn.Text = "Tracers: " .. new .. "\n(b)"
  1183. end
  1184. TracersBtn.MouseButton1Click:connect(TracersBtnClick)
  1185.  
  1186. local ClickTp = CreateButton("ClickTp\n(e)", main)
  1187. ClickTp.Position = UDim2.new(0,170,0,130)
  1188. ClickTp.Size = UDim2.new(0,80,0,40)
  1189. local ClickTpClick = function()
  1190. local m = plr:GetMouse()
  1191. if m.Target then
  1192. ClickTp.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  1193. plr.Character:MoveTo(m.Hit.p)
  1194. wait(0.5)
  1195. ClickTp.BackgroundColor3 = Color3.fromRGB(106, 106, 106)
  1196. else
  1197. ClickTp.BackgroundColor3 = Color3.new(1,0,0)
  1198. wait(0.5)
  1199. ClickTp.BackgroundColor3 = Color3.fromRGB(106, 106, 106)
  1200. end
  1201. end
  1202. ClickTp.MouseButton1Click:connect(ClickTpClick)
  1203.  
  1204. --[[local FlyEnabled = true
  1205. local Fly = CreateButton("Fly\n(t)", main)
  1206. Fly.Position = UDim2.new(0,270,0,130)
  1207. local FlyClick = function()
  1208. doesn't work
  1209. end
  1210. Fly.MouseButton1Click:connect(function()
  1211. Fly.BackgroundColor3 = Color3.new(1,0,0)
  1212. wait(0.5)
  1213. Fly.BackgroundColor3 = Color3.fromRGB(106, 106, 106)
  1214. end)]]
  1215.  
  1216. local Exit = Create "TextButton" {
  1217. Parent = main,
  1218. BackgroundColor3 = Color3.new(1,0,0),
  1219. Position = UDim2.new(1,-40,0,10),
  1220. Size = UDim2.new(0,30,0,30),
  1221. Font = Enum.Font.SourceSansBold,
  1222. Text = "X",
  1223. TextColor3 = Color3.new(1,1,1),
  1224. TextSize = 30
  1225. }
  1226. Exit.MouseButton1Click:connect(function()
  1227. gui:Destroy()
  1228. script.Disabled = true
  1229. end)
  1230.  
  1231. local mt = getrawmetatable(game)
  1232. make_writeable(mt)
  1233.  
  1234. local old = mt.__index
  1235. mt.__index = function(self, i)
  1236. if i == "WalkSpeed" and not checkcaller() then
  1237. return 16
  1238. elseif i == "JumpPower" and not checkcaller() then
  1239. return 50
  1240. end
  1241. return old(self, i)
  1242. end
  1243.  
  1244. local oldnc = mt.__namecall
  1245. mt.__namecall = function(self, ...)
  1246. local args = {...}
  1247. local method = args[#args]
  1248. if self.Name == "Energy" and self.ClassName == "BindableFunction" and method == "Invoke" and InfEnergyActive then
  1249. return true
  1250. end
  1251. return oldnc(self, ...)
  1252. end
  1253.  
  1254. local state = Enum.HumanoidStateType
  1255. local statemt = getrawmetatable(state)
  1256. make_writeable(statemt)
  1257. local oldsi = statemt.__index
  1258. statemt.__index = function(self, i)
  1259. if self == state and i == "StrafingNoPhysics" and not checkcaller() then
  1260. return 1337
  1261. end
  1262. return oldsi(self, i)
  1263. end
  1264.  
  1265. local Hotkeys = {
  1266. z = SpeedHackClick,
  1267. x = HighJumpClick,
  1268. c = InfEnergyClick,
  1269. v = NoClipClick,
  1270. b = TracersBtnClick,
  1271. e = ClickTpClick,
  1272. --t = FlyClick,
  1273. }
  1274.  
  1275. local m = plr:GetMouse()
  1276. m.KeyDown:connect(function(k)
  1277. if Hotkeys[k] then
  1278. Hotkeys[k]()
  1279. end
  1280. end)
  1281.  
  1282. spawn(function()
  1283. while wait() do
  1284. if NoClipEnabled then
  1285. plr.Character:WaitForChild"Humanoid":SetStateEnabled(11, true)
  1286. plr.Character:WaitForChild"Humanoid":ChangeState(11)
  1287. end
  1288. end
  1289. end)
  1290. end)
  1291.  
  1292. jailbreak.Name = "jailbreak"
  1293. jailbreak.Parent = main
  1294. jailbreak.BackgroundColor3 = Color3.new(1, 1, 1)
  1295. jailbreak.Position = UDim2.new(0.369942188, 0, 0.825153351, 0)
  1296. jailbreak.Size = UDim2.new(0, 135, 0, 37)
  1297. jailbreak.Font = Enum.Font.SourceSans
  1298. jailbreak.Text = "Jailbreak Gui"
  1299. jailbreak.TextColor3 = Color3.new(0, 0, 0)
  1300. jailbreak.TextSize = 14
  1301. jailbreak.MouseButton1Down:connect(function()
  1302. local plr = game:GetService("Players").LocalPlayer
  1303.  
  1304. local TpMethod = 1
  1305.  
  1306. function JailbreakTp(...)
  1307. getfenv()["TpMethod" .. TpMethod](...)
  1308. end
  1309.  
  1310. function TpMethod1(...)
  1311. local char = plr.Character
  1312. local root = char.HumanoidRootPart
  1313. local args = {...}
  1314. for i=0,1,0.05 do
  1315. wait()
  1316. root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  1317. end
  1318. end
  1319.  
  1320. function TpMethod2(...)
  1321. local args = {...}
  1322. local char = plr.Character
  1323. local target = Vector3.new(unpack(args,1,3))
  1324. local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  1325. dist = math.floor(dist / 100) + 1
  1326. for i=0,dist * 4 do
  1327. wait()
  1328. char:MoveTo(Vector3.new(...))
  1329. end
  1330. if args[#args] == true then
  1331. wait()
  1332. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  1333. end
  1334. end
  1335.  
  1336. function Tween(obj, t, properties)
  1337. local TweenService = game:GetService("TweenService")
  1338. local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  1339. local tween = TweenService:Create(obj,tweenInfo,properties)
  1340. tween:Play()
  1341. return tween
  1342. end
  1343.  
  1344. local Tracers = {}
  1345.  
  1346. local function AddLasso(p,team)
  1347. if not Tracers[team.Name] then return end
  1348. if p == plr then return end
  1349. spawn(function()
  1350. if p.Character then
  1351. local l = Instance.new("SelectionPartLasso")
  1352. l.Parent = p.Character
  1353. l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid"
  1354. l.Part = plr.Character:WaitForChild"HumanoidRootPart"
  1355. l.Visible = true
  1356. l.Color3 = team.TeamColor.Color
  1357. for i=0,5 do
  1358. local sg = Instance.new("SurfaceGui")
  1359. sg.Face = i
  1360. sg.Parent = p.Character
  1361. sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart"
  1362. sg.AlwaysOnTop = true
  1363. local f = Instance.new("Frame", sg)
  1364. f.Size = UDim2.new(1,0,1,0)
  1365. f.BorderSizePixel = 0
  1366. f.BackgroundColor3 = team.TeamColor.Color
  1367. f.BackgroundTransparency = 0.5
  1368. end
  1369. end
  1370. end)
  1371. end
  1372.  
  1373. local function RemoveLasso(p)
  1374. if not p.Character then return end
  1375. for i,v in pairs(p.Character:GetDescendants()) do
  1376. if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then
  1377. v:Destroy()
  1378. end
  1379. end
  1380. end
  1381.  
  1382. for _,team in pairs(game:GetService("Teams"):GetChildren()) do
  1383. team.PlayerAdded:connect(function(p)
  1384. AddLasso(p,team)
  1385. end)
  1386.  
  1387. team.PlayerRemoved:connect(function(p)
  1388. RemoveLasso(p)
  1389. end)
  1390. end
  1391.  
  1392. function ToggleTracers(team, bool)
  1393. Tracers[team] = bool
  1394. local t = game:GetService("Teams"):FindFirstChild(team)
  1395. if not t then return end
  1396. for i,v in pairs(t:GetPlayers()) do
  1397. if bool then
  1398. AddLasso(v,t)
  1399. else
  1400. RemoveLasso(v)
  1401. end
  1402. end
  1403. end
  1404.  
  1405. local function CharAdded(plr, char)
  1406. if Tracers[tostring(plr.Team)] then
  1407. AddLasso(plr,plr.Team)
  1408. end
  1409. end
  1410.  
  1411. local function PlrAdded(plr)
  1412. plr.CharacterAdded:connect(function(char)
  1413. CharAdded(plr, char)
  1414. end)
  1415. if plr.Character then
  1416. CharAdded(plr, plr.Character)
  1417. end
  1418. end
  1419.  
  1420. game:GetService("Players").PlayerAdded:connect(PlrAdded)
  1421. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  1422. PlrAdded(v)
  1423. end
  1424.  
  1425. --Creating Gui--
  1426.  
  1427. local function Create(classname)
  1428. return function(t)
  1429. local ins = Instance.new(classname)
  1430. for i,v in pairs(t) do
  1431. ins[i] = v
  1432. end
  1433. return ins
  1434. end
  1435. end
  1436.  
  1437. --local parent = game:GetService("CoreGui"):WaitForChild("RobloxGui")
  1438. local main = Create "Frame" {
  1439. Active = true,
  1440. ClipsDescendants = true,
  1441. Draggable = true,
  1442. BackgroundColor3 = Color3.new(1,1,1),
  1443. BorderSizePixel = 0,
  1444. Size = UDim2.new(0,400,0,300),
  1445. Position = UDim2.new(0.5,-200,0,-300),
  1446. BackgroundTransparency = 1,
  1447. Parent = Instance.new("ScreenGui", plr.PlayerGui)--parent
  1448. }
  1449. do
  1450. local effect = Create "Frame" {
  1451. Parent = main,
  1452. Size = UDim2.new(1,0,0,50),
  1453. BackgroundColor3 = Color3.fromRGB(85,170,255),
  1454. BorderSizePixel = 0,
  1455. ClipsDescendants = true,
  1456. }
  1457. local lb = Create "TextLabel" {
  1458. Parent = effect,
  1459. Size = UDim2.new(1,0,1,0),
  1460. BackgroundTransparency = 1,
  1461. BorderSizePixel = 0,
  1462. TextSize = 30,
  1463. TextColor3 = Color3.new(1,1,1),
  1464. TextXAlignment = "Left",
  1465. Font = "SourceSansBold",
  1466. Text = "Jailbreak GUI",
  1467. ZIndex = 2,
  1468. }
  1469. local function GTween()
  1470. lb:TweenPosition(UDim2.new(1,10,0,0), nil,nil,3,true,function(ts)
  1471. if ts == Enum.TweenStatus.Completed then
  1472. lb.Position = UDim2.new(0,0 - lb.TextBounds.X - 2,0,0)
  1473. GTween()
  1474. end
  1475. end)
  1476. end
  1477. GTween()
  1478. end
  1479.  
  1480. local Menu = Create "Frame" {
  1481. BackgroundColor3 = Color3.new(1,1,1),
  1482. BorderSizePixel = 0,
  1483. Position = UDim2.new(0,0,0,50),
  1484. Size = UDim2.new(1,0,1,-50),
  1485. Parent = main,
  1486. }
  1487.  
  1488. local MenuLabel = Create "TextLabel" {
  1489. BackgroundTransparency = 1,
  1490. BorderSizePixel = 0,
  1491. TextColor3 = Color3.new(0,0,0),
  1492. TextSize = 20,
  1493. Font = "SourceSans",
  1494. Text = "Made by refrfgrtgef for v3rm\n(won't tell you my roblox name)",
  1495. TextWrapped = true,
  1496. Size = UDim2.new(1,0,0,50),
  1497. Parent = Menu
  1498. }
  1499.  
  1500. local function CreateButton(text,parent)
  1501. return Create "TextButton" {
  1502. Active = true,
  1503. AutoButtonColor = true,
  1504. BackgroundColor3 = Color3.fromRGB(0,155,232),
  1505. BorderSizePixel = 1,
  1506. Size = UDim2.new(0,100,0,30),
  1507. Font = "SourceSansBold",
  1508. TextColor3 = Color3.new(1,1,0),
  1509. TextSize = 20,
  1510. Text = text,
  1511. Parent = parent
  1512. }
  1513. end
  1514.  
  1515. local function CreateFrame(name)
  1516. local f = Create "Frame" {
  1517. BackgroundColor3 = Color3.new(1,1,1),
  1518. BorderSizePixel = 0,
  1519. Position = UDim2.new(0,0,0,50),
  1520. Size = UDim2.new(1,0,1,-50),
  1521. Visible = false,
  1522. }
  1523. local lb = Create "TextLabel" {
  1524. BackgroundTransparency = 1,
  1525. BorderSizePixel = 0,
  1526. TextSize = 20,
  1527. TextColor3 = Color3.new(1,1,0),
  1528. Position = UDim2.new(0,0,0,5),
  1529. Text = name,
  1530. Parent = f,
  1531. TextXAlignment = "Center",
  1532. TextYAlignment = "Center",
  1533. Size = UDim2.new(1,0,0,30),
  1534. }
  1535. local exit = CreateButton("Back", f)
  1536. exit.Position = UDim2.new(0.5,-50,1,-45)
  1537. exit.MouseButton1Click:connect(function()
  1538. Menu.Visible = true
  1539. f.Visible = false
  1540. ActiveFrame = Menu
  1541. end)
  1542. return f
  1543. end
  1544.  
  1545. ActiveFrame = Menu
  1546.  
  1547. local TeleportsFrame = CreateFrame("Teleports")
  1548. TeleportsFrame.Parent = main
  1549.  
  1550. local BankIn = CreateButton("Bank (In)", TeleportsFrame)
  1551. BankIn.Position = UDim2.new(0,15,0,40)
  1552. BankIn.Size = UDim2.new(0,80,0,30)
  1553. BankIn.MouseButton1Click:connect(function()
  1554. JailbreakTp(32,0.715,814, true)
  1555. end)
  1556.  
  1557. local BankOut = CreateButton("Bank (Out)", TeleportsFrame)
  1558. BankOut.Position = UDim2.new(0,105,0,40)
  1559. BankOut.MouseButton1Click:connect(function()
  1560. JailbreakTp(10, 18, 784)
  1561. end)
  1562.  
  1563. local JailIn = CreateButton("Jail (In)", TeleportsFrame)
  1564. JailIn.Position = UDim2.new(0,215,0,40)
  1565. JailIn.Size = UDim2.new(0,80,0,30)
  1566. JailIn.MouseButton1Click:connect(function()
  1567. JailbreakTp(-1310, 18, -1658)
  1568. end)
  1569.  
  1570. local JailOut = CreateButton("Jail (Out)", TeleportsFrame)
  1571. JailOut.Position = UDim2.new(0,305,0,40)
  1572. JailOut.Size = UDim2.new(0,80,0,30)
  1573. JailOut.MouseButton1Click:connect(function()
  1574. JailbreakTp(-1133, 18, -1355)
  1575. end)
  1576.  
  1577. local Garage = CreateButton("Garage", TeleportsFrame)
  1578. Garage.Position = UDim2.new(0,335,0,120)--UDim2.new(0,10,0,80)
  1579. Garage.Size = UDim2.new(0,60,0,30)
  1580. Garage.MouseButton1Click:connect(function()
  1581. JailbreakTp(-352, 23, 1175)
  1582. end)
  1583.  
  1584. local JewelIn = CreateButton("Jewelry (In)", TeleportsFrame)
  1585. JewelIn.Position = UDim2.new(0,25,0,80)
  1586. JewelIn.MouseButton1Click:connect(function()
  1587. JailbreakTp(133, 18, 1320, true)
  1588. end)
  1589.  
  1590. local JewelOut = CreateButton("Jewelry (Out)", TeleportsFrame)
  1591. JewelOut.Position = UDim2.new(0,135,0,80)
  1592. JewelOut.Size = UDim2.new(0,115,0,30)
  1593. JewelOut.MouseButton1Click:connect(function()
  1594. JailbreakTp(142, 18, 1365)
  1595. end)
  1596.  
  1597. local Crim1 = CreateButton("Crim base 1", TeleportsFrame)
  1598. Crim1.Position = UDim2.new(0,5,0,120)
  1599. Crim1.MouseButton1Click:connect(function()
  1600. JailbreakTp(-226, 18, 1590, true)
  1601. end)
  1602.  
  1603. local Crim2 = CreateButton("Crim base 2", TeleportsFrame)
  1604. Crim2.Position = UDim2.new(0,115,0,120)
  1605. Crim2.MouseButton1Click:connect(function()
  1606. JailbreakTp(true, 1637, 50, -1768, true)
  1607. end)
  1608.  
  1609. local Donut = CreateButton("Donut Shop", TeleportsFrame)
  1610. Donut.Position = UDim2.new(0,225,0,120)
  1611. Donut.MouseButton1Click:connect(function()
  1612. JailbreakTp(268, 18, -1760, true)
  1613. end)
  1614.  
  1615. local Gas = CreateButton("Gas Station", TeleportsFrame)
  1616. Gas.Position = UDim2.new(0,260,0,80)
  1617. Gas.MouseButton1Click:connect(function()
  1618. JailbreakTp(-1583, 18, 724, true)
  1619. end)
  1620.  
  1621. local TeleportsBtn = CreateButton("Teleports", MenuLabel)
  1622. TeleportsBtn.Position = UDim2.new(0.5,-50,0,60)
  1623. TeleportsBtn.MouseButton1Click:connect(function()
  1624. TeleportsFrame.Visible = true
  1625. Menu.Visible = false
  1626. ActiveFrame = TeleportsFrame
  1627. end)
  1628.  
  1629. local StuffFrame = CreateFrame("Stuff")
  1630. StuffFrame.Parent = main
  1631.  
  1632. local StuffBtn = CreateButton("Stuff", MenuLabel)
  1633. StuffBtn.Position = TeleportsBtn.Position + UDim2.new(0,0,0,40)
  1634. StuffBtn.MouseButton1Click:connect(function()
  1635. StuffFrame.Visible = true
  1636. Menu.Visible = false
  1637. ActiveFrame = StuffFrame
  1638. end)
  1639.  
  1640. local RemoveDoors = CreateButton("Remove Doors", StuffFrame)
  1641. RemoveDoors.Size = UDim2.new(0,120,0,30)
  1642. RemoveDoors.Position = UDim2.new(0,10,0,50)
  1643. RemoveDoors.MouseButton1Click:connect(function()
  1644. local doors = workspace:FindFirstChild("Doors")
  1645. if not doors then return end
  1646. for i,v in pairs(doors:GetChildren()) do
  1647. v:Destroy()
  1648. end
  1649. end)
  1650.  
  1651. local Platform = CreateButton("Platform", StuffFrame)
  1652. Platform.Position = UDim2.new(0.5,-60,0,50)
  1653. Platform.MouseButton1Click:connect(function()
  1654. local p = Instance.new("Part", workspace)
  1655. p.Size = Vector3.new(30,0.5,30)
  1656. p.Anchored = true
  1657. p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0)
  1658. plr.Character:MoveTo(p.Position + Vector3.new(0,1,0))
  1659. spawn(function()
  1660. while p.Parent do
  1661. wait(1)
  1662. if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then
  1663. p:Destroy()
  1664. end
  1665. end
  1666. end)
  1667. end)
  1668.  
  1669. local Tracers = CreateButton("Tracers: None", StuffFrame)
  1670. Tracers.Size = UDim2.new(0,140,0,30)
  1671. Tracers.Position = UDim2.new(1,-150,0,50)
  1672. Tracers.MouseButton1Click:connect(function()
  1673. local curr = Tracers.Text:sub(10)
  1674. if curr ~= "None" then
  1675. ToggleTracers(curr, false)
  1676. end
  1677. local teams = {"None", "Police", "Criminal", "Prisoner"}
  1678. local new = ""
  1679. for i,v in pairs(teams) do
  1680. if v == curr then
  1681. new = teams[i + 1] or teams[1]
  1682. end
  1683. end
  1684. if new ~= "None" then
  1685. ToggleTracers(new, true)
  1686. end
  1687. Tracers.Text = "Tracers: " .. new
  1688. end)
  1689.  
  1690. local BtoolActive = false
  1691. local m = plr:GetMouse()
  1692.  
  1693. local Btool = CreateButton("Btool: Off", StuffFrame)
  1694. Btool.Position = UDim2.new(0,10,0,90)
  1695. Btool.MouseButton1Click:connect(function()
  1696. spawn(function()
  1697. local status = Btool.Text:sub(8)
  1698. local newstatus = status == "On" and "Off" or status == "Off" and "On"
  1699. Btool.Text = "Btool: " .. newstatus
  1700. BtoolActive = newstatus == "On" and true or newstatus == "Off" and false
  1701. if BtoolActive then
  1702. local sb = Instance.new("SelectionBox", workspace.CurrentCamera)
  1703. local ev = m.Button1Down:connect(function()
  1704. if m.Target then
  1705. m.Target:Destroy()
  1706. end
  1707. end)
  1708. while BtoolActive do
  1709. wait()
  1710. if m.Target then
  1711. sb.Adornee = m.Target
  1712. end
  1713. end
  1714. ev:Disconnect()
  1715. else
  1716. local sb = workspace.CurrentCamera:FindFirstChildOfClass("SelectionBox")
  1717. if sb then sb:Destroy() end
  1718. end
  1719. end)
  1720. end)
  1721.  
  1722. local ClickTpEnabled = false
  1723. m.Button1Down:connect(function()
  1724. if ClickTpEnabled and m.Target then
  1725. plr.Character:MoveTo(m.Hit.p)
  1726. end
  1727. end)
  1728.  
  1729. local ClickTp = CreateButton("ClickTp: Off", StuffFrame)
  1730. ClickTp.Position = UDim2.new(0,120,0,90)
  1731. ClickTp.MouseButton1Click:connect(function()
  1732. spawn(function()
  1733. local status = ClickTp.Text:sub(10)
  1734. local newstatus = status == "Off" and "On" or status == "On" and "Off"
  1735. ClickTpEnabled = newstatus == "On" and true or newstatus == "Off" and false
  1736. ClickTp.Text = "ClickTp: " .. newstatus
  1737. local ind = Create "Part" {
  1738. Anchored = true,
  1739. CanCollide = false,
  1740. Transparency = 0.3,
  1741. Size = Vector3.new(1.2,0.3,1.2),
  1742. BrickColor = BrickColor.Green(),
  1743. Parent = workspace
  1744. }
  1745. Instance.new("CylinderMesh", ind)
  1746. m.TargetFilter = ind
  1747. local beam = Create "Part" {
  1748. Anchored = true,
  1749. CanCollide = false,
  1750. Transparency = 0.3,
  1751. BrickColor = BrickColor.Green(),
  1752. TopSurface = "Smooth",
  1753. BottomSurface = "Smooth",
  1754. Size = Vector3.new(0.3,0.3,1),
  1755. Parent = workspace
  1756.  
  1757. }
  1758. while ClickTpEnabled do
  1759. wait()
  1760. ind.CFrame = CFrame.new(m.Hit.p)
  1761. local humrootpos = plr.Character:WaitForChild'HumanoidRootPart'.Position
  1762. local dist = (Vector3.new(m.Hit.p.X,0,m.Hit.p.Z) - Vector3.new(humrootpos.X,0,humrootpos.Z)).magnitude
  1763. if dist > 150 then
  1764. ind.BrickColor,beam.BrickColor = BrickColor.Red(),BrickColor.Red()
  1765. else
  1766. ind.BrickColor,beam.BrickColor = BrickColor.Green(),BrickColor.Green()
  1767. end
  1768. beam.Size = Vector3.new(0.3,0.3,dist - 0.5)
  1769. beam.CFrame = CFrame.new(plr.Character:WaitForChild'HumanoidRootPart'.Position, m.Hit.p) * CFrame.new(0,0,-dist/2 + 0.5)
  1770. end
  1771. ind:Destroy()
  1772. beam:Destroy()
  1773. end)
  1774. end)
  1775.  
  1776. local Gravity = CreateButton("Low Gravity", StuffFrame)
  1777. Gravity.Position = UDim2.new(0,230,0,90)
  1778. Gravity.Size = UDim2.new(0,130,0,30)
  1779. Gravity.MouseButton1Click:connect(function()
  1780. local t = Gravity.Text == "Low Gravity" and true or false
  1781. workspace.Gravity = t and 50 or 196.2
  1782. Gravity.Text = t and "Normal Gravity" or "Low Gravity"
  1783. end)
  1784.  
  1785. local InfiniteJumpEnabled = false
  1786. game:GetService("UserInputService").JumpRequest:connect(function()
  1787. if InfiniteJumpEnabled then
  1788. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  1789. end
  1790. end)
  1791. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  1792. InfiniteJump.Position = UDim2.new(0,10,0,130)
  1793. InfiniteJump.Size = UDim2.new(0,150,0,30)
  1794. InfiniteJump.MouseButton1Click:connect(function()
  1795. local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  1796. local new = state == "Off" and "On" or state == "On" and "Off"
  1797. InfiniteJumpEnabled = new == "On"
  1798. InfiniteJump.Text = "Infinite Jump: " .. new
  1799. end)
  1800.  
  1801. local Giver = nil
  1802. local ItemsGiver = CreateButton("Items Giver", StuffFrame)
  1803. ItemsGiver.Position = UDim2.new(0,170,0,130)
  1804. ItemsGiver.MouseButton1Click:connect(function()
  1805. if not workspace:FindFirstChild("Givers") then return end
  1806. if Giver then
  1807. for i,v in pairs(Giver) do
  1808. v.ClickDetector.Parent = v.OriginalParent
  1809. v.Event:Disconnect()
  1810. end
  1811. getmetatable(Giver):Destroy()
  1812. end
  1813. Giver = {}
  1814. local g = Giver
  1815. local p = Instance.new("Part", workspace)
  1816. p.Anchored = true
  1817. p.CanCollide = false
  1818. p.CFrame = plr.Character:WaitForChild"HumanoidRootPart".CFrame
  1819. setmetatable(Giver, {__metatable = p})
  1820. for i,v in pairs(workspace.Givers:GetChildren()) do
  1821. local cd = v:FindFirstChildOfClass"ClickDetector"
  1822. if cd then
  1823. local newt = {}
  1824. newt.ClickDetector = cd
  1825. newt.OriginalParent = v
  1826. cd.Parent = p
  1827. newt.Event = cd.MouseClick:connect(function()
  1828. cd.Parent = v
  1829. end)
  1830. table.insert(Giver, newt)
  1831. end
  1832. end
  1833. spawn(function()
  1834. wait(10)
  1835. if Giver == g then
  1836. Giver = nil
  1837. for i,v in pairs(g) do
  1838. v.ClickDetector.Parent = v.OriginalParent
  1839. v.Event:Disconnect()
  1840. end
  1841. getmetatable(g):Destroy()
  1842. end
  1843. end)
  1844. end)
  1845.  
  1846. local BankAutoRobBtn = CreateButton("Bank AutoRob", StuffFrame)
  1847. BankAutoRobBtn.Position = UDim2.new(0,280,0,130)
  1848. BankAutoRobBtn.Size = UDim2.new(0,115,0,30)
  1849. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  1850. BankAutoRobBtn.MouseButton1Click:connect(function()
  1851. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  1852. local Info = Bank.Extra.Sign
  1853. if Info.Decal.Transparency == 0 then
  1854. game:GetService("StarterGui"):SetCore("SendNotification",{
  1855. Title = "Bank is closed!",
  1856. Text = "You need to wait for the bank to open!",
  1857. Duration = 7,
  1858. Button1 = "Dismiss",
  1859. })
  1860. return
  1861. end
  1862. local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  1863. local root = plr.Character.HumanoidRootPart
  1864. local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  1865.  
  1866. if (bankpos - plrpos).magnitude > 150 then
  1867. local cb = Instance.new"BindableFunction"
  1868.  
  1869. cb.OnInvoke = function(arg)
  1870. if arg == "Teleport" then
  1871. JailbreakTp(10, 18, 784)
  1872. end
  1873. end
  1874.  
  1875. game:GetService("StarterGui"):SetCore("SendNotification",{
  1876. Title = "You are too far!",
  1877. Text = "You need to get closer to the bank (use tp)",
  1878. Duration = 7,
  1879. Button1 = "Dismiss",
  1880. Button2 = "Teleport",
  1881. Callback = cb
  1882. })
  1883. else
  1884. RobTheBank()
  1885. end
  1886. end)
  1887.  
  1888. local SettingsFrame = CreateFrame("Settings")
  1889. SettingsFrame.Parent = main
  1890.  
  1891. local Settingsbtn = CreateButton("Settings", MenuLabel)
  1892. Settingsbtn.Position = StuffBtn.Position + UDim2.new(0,0,0,40)
  1893. Settingsbtn.MouseButton1Click:connect(function()
  1894. SettingsFrame.Visible = true
  1895. Menu.Visible = false
  1896. ActiveFrame = SettingsFrame
  1897. end)
  1898.  
  1899. local TpMethodBtn = CreateButton("Teleport Method: 1", SettingsFrame)
  1900. TpMethodBtn.Position = UDim2.new(0,10,0,50)
  1901. TpMethodBtn.Size = UDim2.new(0,160,0,30)
  1902. TpMethodBtn.MouseButton1Click:connect(function()
  1903. local curr = TpMethodBtn.Text:sub(string.len("Teleport Method: ") + 1)
  1904. curr = tonumber(curr)
  1905. local new = curr == 1 and 2 or curr == 2 and 1
  1906. TpMethod = new
  1907. TpMethodBtn.Text = "Teleport Method: " .. new
  1908. end)
  1909.  
  1910. local ExitBtn = CreateButton("Exit", MenuLabel)
  1911. ExitBtn.Position = Settingsbtn.Position + UDim2.new(0,0,0,40)
  1912. ExitBtn.MouseButton1Click:connect(function()
  1913. main:Destroy()
  1914. script.Disabled = true
  1915. script:Destroy()
  1916. end)
  1917.  
  1918. local BankJewelStatus = Create "TextLabel" {
  1919. BackgroundTransparency = 1,
  1920. TextSize = 8,
  1921. TextColor3 = Color3.new(0,0,0),
  1922. Font = "Legacy",
  1923. TextXAlignment = "Left",
  1924. TextYAlignment = "Top",
  1925. Size = UDim2.new(0,100,0,100),
  1926. Position = UDim2.new(0,10,0,220),
  1927. Text = "Bank:\nJewelry:",
  1928. Parent = Menu
  1929. }
  1930.  
  1931. local BankStatus = BankJewelStatus:Clone()
  1932. BankStatus.Text = "Unknown"
  1933. BankStatus.Size = UDim2.new(0,100,0,100)
  1934. BankStatus.Position = UDim2.new(0,46,0,220)
  1935. BankStatus.Parent = Menu
  1936. BankStatus.TextColor3 = Color3.new(1,0,0)
  1937.  
  1938. local JewelryStatus = BankStatus:Clone()
  1939. JewelryStatus.Text = "Unknown"
  1940. JewelryStatus.Size = UDim2.new(0,100,0,100)
  1941. JewelryStatus.Position = UDim2.new(0,59,0,232)
  1942. JewelryStatus.Parent = Menu
  1943. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  1944.  
  1945. main:TweenPosition(UDim2.new(0.5,-200,0.5,-150))
  1946.  
  1947. local TransparencyTweens = {}
  1948. main.MouseLeave:connect(function()
  1949. spawn(function()
  1950. local bool = false
  1951. local ev = main.MouseEnter:connect(function()
  1952. bool = true
  1953. end)
  1954. wait(1)
  1955. ev:Disconnect()
  1956. if bool then return end
  1957. for i,v in pairs(TransparencyTweens) do
  1958. v:Pause()
  1959. end
  1960. TransparencyTweens = {}
  1961. for i,v in pairs(main:GetDescendants()) do
  1962. if v.Visible then
  1963. local totween = {}
  1964. if v.ClassName:sub(1,4) == "Text" then
  1965. totween.TextTransparency = 0.7
  1966. end
  1967. if v.BackgroundTransparency ~= 1 then
  1968. totween.BackgroundTransparency = 0.7
  1969. end
  1970. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  1971. end
  1972. end
  1973. main:TweenSize(UDim2.new(0,400,0,50),nil,nil,nil,true)
  1974. end)
  1975. end)
  1976. main.MouseEnter:connect(function()
  1977. for i,v in pairs(TransparencyTweens) do
  1978. v:Pause()
  1979. end
  1980. TransparencyTweens = {}
  1981. for i,v in pairs(main:GetDescendants()) do
  1982. if v.Visible then
  1983. local totween = {}
  1984. if v.ClassName:sub(1,4) == "Text" then
  1985. totween.TextTransparency = 0
  1986. end
  1987. if v.BackgroundTransparency ~= 1 then
  1988. totween.BackgroundTransparency = 0
  1989. end
  1990. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  1991. end
  1992. end
  1993. main:TweenSize(UDim2.new(0,400,0,300),nil,nil,nil,true)
  1994. end)
  1995.  
  1996. --AutoRob stuff--
  1997. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  1998. local BankAutoRob = {
  1999. {
  2000. Pos = {51, 18.06, 856.5},
  2001. Yield = 2,
  2002. Status = "Starting the robbery"
  2003. },
  2004. {
  2005. Pos = {29.71, 0.73, 815.25},
  2006. Yield = 15,
  2007. Status = "Opening the vault"
  2008. },
  2009. {
  2010. Pos = {18.37, 0.7659, 822.25},
  2011. Yield = DuffelBag and 50 or 25,
  2012. Status = "Collecting $$$"
  2013. },
  2014. {
  2015. Pos = {10, 18, 784},
  2016. Status = "Finishing the robbery"
  2017. }
  2018. }
  2019.  
  2020. local function Tp(...)
  2021. local char = plr.Character
  2022. for i=1,2 do
  2023. wait()
  2024. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  2025. end
  2026. end
  2027.  
  2028. function RobTheBank()
  2029. for _,v in pairs(BankAutoRob) do
  2030. Tp(unpack(v.Pos))
  2031. wait(v.Yield)
  2032. end
  2033. end
  2034.  
  2035. --Bank notification--
  2036. pcall(function()
  2037. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  2038. local Info = Bank.Extra.Sign.Decal
  2039. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  2040. if Info.Transparency ~= 0 then
  2041. BankStatus.Text = "Open"
  2042. BankStatus.TextColor3 = Color3.new(0,1,0)
  2043. BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  2044. local cb = Instance.new("BindableFunction")
  2045. cb.OnInvoke = function(arg)
  2046. if arg == "Teleport" then
  2047. JailbreakTp(10, 18, 784)
  2048. elseif arg == "AutoRob" then
  2049. RobTheBank()
  2050. end
  2051. end
  2052. game:GetService("StarterGui"):SetCore("SendNotification",{
  2053. Title = "Bank is ready!",
  2054. Text = "Bank is ready!",
  2055. Duration = 15,
  2056. Button1 = "Dismiss",
  2057. Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport",
  2058. Callback = cb
  2059. })
  2060. else
  2061. BankStatus.Text = "Closed"
  2062. BankStatus.TextColor3 = Color3.new(1,0,0)
  2063. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  2064. end
  2065. end)
  2066. BankStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  2067. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  2068. BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  2069. end)
  2070. --Jewelry notification--
  2071. pcall(function()
  2072. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  2073. local Info = Jewelry.Extra.Sign.Decal
  2074. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  2075. if Info.Transparency ~= 0 then
  2076. JewelryStatus.Text = "Open"
  2077. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  2078. BankStatus.TextColor3 = Color3.new(0,1,0)
  2079. local cb = Instance.new("BindableFunction")
  2080. cb.OnInvoke = function(arg)
  2081. if arg == "Teleport" then
  2082. JailbreakTp(142, 18, 1365)
  2083. end
  2084. end
  2085. game:GetService("StarterGui"):SetCore("SendNotification",{
  2086. Title = "Jewelry is ready!",
  2087. Text = "Jewelry is ready!",
  2088. Duration = 15,
  2089. Button1 = "Dismiss",
  2090. Button2 = "Teleport",
  2091. Callback = cb
  2092. })
  2093. else
  2094. JewelryStatus.Text = "Closed"
  2095. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  2096. end
  2097. end)
  2098. JewelryStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  2099. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  2100. end)
  2101. end)
  2102.  
  2103. dls.Name = "dls"
  2104. dls.Parent = main
  2105. dls.BackgroundColor3 = Color3.new(1, 1, 1)
  2106. dls.Position = UDim2.new(0.369942188, 0, 0.641104341, 0)
  2107. dls.Size = UDim2.new(0, 135, 0, 37)
  2108. dls.Font = Enum.Font.SourceSans
  2109. dls.Text = "DLS Gui"
  2110. dls.TextColor3 = Color3.new(0, 0, 0)
  2111. dls.TextSize = 14
  2112. dls.MouseButton1Down:connect(function()
  2113. local HaxedAlready = false
  2114. function BindHax()
  2115. for i = 0, 50 do
  2116. game:GetService("RunService"):BindToRenderStep("HAX" .. tostring(i), Enum.RenderPriority.First.Value - 1, function()
  2117. game:GetService("Players").LocalPlayer.MainFunction:InvokeServer({["Cmd"] = "GiveStrength", ["Amount"] = 1799})
  2118. end)
  2119. game:GetService("RunService").RenderStepped:wait()
  2120. end
  2121. end
  2122. function UnbindHax()
  2123. for i = 0, 50 do
  2124. game:GetService("RunService"):UnbindFromRenderStep("HAX" .. tostring(i))
  2125. game:GetService("RunService").RenderStepped:wait()
  2126. end
  2127. game:GetService("Players").LocalPlayer.MainFunction:InvokeServer({["Cmd"] = "Rebirth"})
  2128. HaxedAlready = false
  2129. end
  2130.  
  2131. while wait() do
  2132. if game:GetService("Players").LocalPlayer.leaderstats.Strength.Value >= 1000000000 then
  2133. UnbindHax()
  2134. else
  2135. if HaxedAlready == false then
  2136. BindHax()
  2137. HaxedAlready = true
  2138. end
  2139. end
  2140. end
  2141. end)
  2142.  
  2143. texting.Name = "texting"
  2144. texting.Parent = main
  2145. texting.BackgroundColor3 = Color3.new(1, 1, 1)
  2146. texting.Position = UDim2.new(0.684007704, 0, 0.101226993, 0)
  2147. texting.Size = UDim2.new(0, 135, 0, 37)
  2148. texting.Font = Enum.Font.SourceSans
  2149. texting.Text = "Texting Simulator Gui"
  2150. texting.TextColor3 = Color3.new(0, 0, 0)
  2151. texting.TextSize = 14
  2152. texting.MouseButton1Down:connect(function()
  2153. local ScreenGui = Instance.new("ScreenGui")
  2154. local Frame = Instance.new("Frame")
  2155. local Text = Instance.new("TextLabel")
  2156. local text = Instance.new("TextButton")
  2157. local money = Instance.new("TextButton")
  2158. local diamond = Instance.new("TextButton")
  2159. local emoji = Instance.new("TextButton")
  2160. --Properties:
  2161. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  2162.  
  2163. Frame.Parent = ScreenGui
  2164. Frame.BackgroundColor3 = Color3.new(0.929412, 1, 0.133333)
  2165. Frame.Position = UDim2.new(0.0627943501, 0, 0.0966325104, 0)
  2166. Frame.Size = UDim2.new(0, 254, 0, 104)
  2167.  
  2168. Text.Name = "Text"
  2169. Text.Parent = Frame
  2170. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  2171. Text.Position = UDim2.new(0.106299214, 0, 0, 0)
  2172. Text.Size = UDim2.new(0, 200, 0, 18)
  2173. Text.Font = Enum.Font.SourceSans
  2174. Text.Text = "texter haxx gui"
  2175. Text.TextColor3 = Color3.new(0, 0, 0)
  2176. Text.TextSize = 14
  2177.  
  2178. text.Name = "text"
  2179. text.Parent = Frame
  2180. text.BackgroundColor3 = Color3.new(1, 1, 1)
  2181. text.Position = UDim2.new(0.0669291317, 0, 0.288461477, 0)
  2182. text.Size = UDim2.new(0, 106, 0, 30)
  2183. text.Font = Enum.Font.SourceSans
  2184. text.Text = "inf text"
  2185. text.TextColor3 = Color3.new(0, 0, 0)
  2186. text.TextSize = 14
  2187. text.MouseButton1Down:Connect(function()
  2188. for i = 1, 50000 do
  2189. game:GetService("ReplicatedStorage").ToolEvents.CashEvent:FireServer()
  2190. end
  2191. end)
  2192.  
  2193. money.Name = "money"
  2194. money.Parent = Frame
  2195. money.BackgroundColor3 = Color3.new(1, 1, 1)
  2196. money.Position = UDim2.new(0.527559042, 0, 0.634615362, 0)
  2197. money.Size = UDim2.new(0, 106, 0, 30)
  2198. money.Font = Enum.Font.SourceSans
  2199. money.Text = "inf money"
  2200. money.TextColor3 = Color3.new(0, 0, 0)
  2201. money.TextSize = 14
  2202. money.MouseButton1Down:Connect(function()
  2203. while true do
  2204. wait()
  2205. local A_1 = 10000000000
  2206. local A_2 = "Code02"
  2207. local Event = game:GetService("ReplicatedStorage").EnterCode
  2208. Event:FireServer(A_1, A_2)
  2209. end
  2210. end)
  2211.  
  2212.  
  2213. diamond.Name = "diamond"
  2214. diamond.Parent = Frame
  2215. diamond.BackgroundColor3 = Color3.new(1, 1, 1)
  2216. diamond.Position = UDim2.new(0.527559042, 0, 0.288461477, 0)
  2217. diamond.Size = UDim2.new(0, 106, 0, 30)
  2218. diamond.Font = Enum.Font.SourceSans
  2219. diamond.Text = "inf diamond"
  2220. diamond.TextColor3 = Color3.new(0, 0, 0)
  2221. diamond.TextSize =14
  2222. diamond.MouseButton1Down:Connect(function()
  2223. local parts = game.workspace.Gems:GetChildren()
  2224. local players = game:GetService('Players')
  2225.  
  2226. for i = 1, #parts do
  2227. parts[i].CFrame = players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2228. end
  2229.  
  2230. end)
  2231.  
  2232. emoji.Name = "emoji"
  2233. emoji.Parent = Frame
  2234. emoji.BackgroundColor3 = Color3.new(1, 1, 1)
  2235. emoji.Position = UDim2.new(0.0669291168, 0, 0.634615362, 0)
  2236. emoji.Size = UDim2.new(0, 106, 0, 30)
  2237. emoji.Font = Enum.Font.SourceSans
  2238. emoji.Text = "emoji"
  2239. emoji.TextColor3 = Color3.new(0, 0, 0)
  2240. emoji.TextSize = 14
  2241. emoji.MouseButton1Down:Connect(function()
  2242. game:GetService("ReplicatedStorage").Events.EmojiEquip:FireServer(24)
  2243. end)
  2244. -- Scripts:
  2245. end)
  2246.  
  2247. _1000ws.Name = "1000ws"
  2248. _1000ws.Parent = main
  2249. _1000ws.BackgroundColor3 = Color3.new(1, 1, 1)
  2250. _1000ws.Position = UDim2.new(0.684007704, 0, 0.457055211, 0)
  2251. _1000ws.Size = UDim2.new(0, 135, 0, 37)
  2252. _1000ws.Font = Enum.Font.SourceSans
  2253. _1000ws.Text = "1000 walkspeed"
  2254. _1000ws.TextColor3 = Color3.new(0, 0, 0)
  2255. _1000ws.TextSize = 14
  2256. _1000ws.MouseButton1Down:connect(function()
  2257. local speed = 1000 -- Add the amount of speed you want here!
  2258.  
  2259. spawn(function()
  2260. while wait() do
  2261. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  2262. end
  2263. end)
  2264. end)
  2265.  
  2266. _150ws.Name = "150ws"
  2267. _150ws.Parent = main
  2268. _150ws.BackgroundColor3 = Color3.new(1, 1, 1)
  2269. _150ws.Position = UDim2.new(0.684007704, 0, 0.282208592, 0)
  2270. _150ws.Size = UDim2.new(0, 135, 0, 37)
  2271. _150ws.Font = Enum.Font.SourceSans
  2272. _150ws.Text = "150 walkspeed"
  2273. _150ws.TextColor3 = Color3.new(0, 0, 0)
  2274. _150ws.TextSize = 14
  2275. _150ws.MouseButton1Down:connect(function()
  2276. local speed = 150 -- Add the amount of speed you want here!
  2277.  
  2278. spawn(function()
  2279. while wait() do
  2280. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  2281. end
  2282. end)
  2283. end)
  2284.  
  2285. _1000jp.Name = "1000jp"
  2286. _1000jp.Parent = main
  2287. _1000jp.BackgroundColor3 = Color3.new(1, 1, 1)
  2288. _1000jp.Position = UDim2.new(0.684007704, 0, 0.825153351, 0)
  2289. _1000jp.Size = UDim2.new(0, 135, 0, 37)
  2290. _1000jp.Font = Enum.Font.SourceSans
  2291. _1000jp.Text = "1000 JumpPower"
  2292. _1000jp.TextColor3 = Color3.new(0, 0, 0)
  2293. _1000jp.TextSize = 14
  2294. _1000jp.MouseButton1Down:connect(function()
  2295. local jump = 1000 -- Add the amount of jump power you want here!
  2296.  
  2297. spawn(function()
  2298. while wait() do
  2299. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump
  2300. end
  2301. end)
  2302. end)
  2303.  
  2304. _150jp.Name = "150 jp"
  2305. _150jp.Parent = main
  2306. _150jp.BackgroundColor3 = Color3.new(1, 1, 1)
  2307. _150jp.Position = UDim2.new(0.684007704, 0, 0.641104341, 0)
  2308. _150jp.Size = UDim2.new(0, 135, 0, 37)
  2309. _150jp.Font = Enum.Font.SourceSans
  2310. _150jp.Text = "150 JumpPower"
  2311. _150jp.TextColor3 = Color3.new(0, 0, 0)
  2312. _150jp.TextSize = 14
  2313. _150jp.MouseButton1Down:connect(function()
  2314. local jump = 150 -- Add the amount of jump power you want here!
  2315.  
  2316. spawn(function()
  2317. while wait() do
  2318. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump
  2319. end
  2320. end)
  2321. end)
  2322.  
  2323. close.Name = "close"
  2324. close.Parent = main
  2325. close.BackgroundColor3 = Color3.new(1, 1, 1)
  2326. close.Position = UDim2.new(0.944123328, 0, -0.0521472394, 0)
  2327. close.Size = UDim2.new(0, 59, 0, 30)
  2328. close.Font = Enum.Font.SourceSans
  2329. close.Text = "X"
  2330. close.TextColor3 = Color3.new(0, 0, 0)
  2331. close.TextSize = 14
  2332. close.MouseButton1Down:connect(function()
  2333. close.Visible = false
  2334. main.Visible = false
  2335. OpenFrame.Visible = true
  2336. end)
Add Comment
Please, Sign In to add comment