AreYouMental110

2 good break in story gui

Mar 21st, 2020 (edited)
917
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.90 KB | None | 0 0
  1. -- Status: Patched
  2. -- Gui to Lua
  3. -- Version: 3.2
  4.  
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local Open = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local Close = Instance.new("TextButton")
  11. local By = Instance.new("TextLabel")
  12. local ITEMS = Instance.new("TextLabel")
  13. local Chips = Instance.new("TextButton")
  14. local Cola = Instance.new("TextButton")
  15. local Gun = Instance.new("TextButton")
  16. local Bat = Instance.new("TextButton")
  17. local Apple = Instance.new("TextButton")
  18. local MedKit = Instance.new("TextButton")
  19. local Pizza = Instance.new("TextButton")
  20. local Cookie = Instance.new("TextButton")
  21. local EpicPizza = Instance.new("TextButton")
  22. local Key = Instance.new("TextButton")
  23. local Teddy = Instance.new("TextButton")
  24. local Sword = Instance.new("TextButton")
  25. local Pan = Instance.new("TextButton")
  26. local Teleports = Instance.new("TextLabel")
  27. local Hacks = Instance.new("TextButton")
  28. local Basement = Instance.new("TextButton")
  29. local house = Instance.new("TextButton")
  30. local Attic = Instance.new("TextButton")
  31. local Store = Instance.new("TextButton")
  32. local Sewer = Instance.new("TextButton")
  33. local BossRoom = Instance.new("TextButton")
  34. local Remotes = Instance.new("TextLabel")
  35. local Cat = Instance.new("TextButton")
  36. local KillEnemies = Instance.new("TextButton")
  37. local Heal = Instance.new("TextButton")
  38. local RemoveTools = Instance.new("TextButton")
  39. local ToolDrop = Instance.new("TextButton")
  40. local OpenSafe = Instance.new("TextButton")
  41.  
  42. --Properties:
  43.  
  44. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  45. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  46.  
  47. Open.Name = "Open"
  48. Open.Parent = ScreenGui
  49. Open.BackgroundColor3 = Color3.fromRGB(71, 219, 232)
  50. Open.Position = UDim2.new(0.912489355, 0, 0.7581864, 0)
  51. Open.Size = UDim2.new(0, 83, 0, 34)
  52. Open.Font = Enum.Font.SourceSans
  53. Open.Text = "Open"
  54. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. Open.TextSize = 14.000
  56. Open.MouseButton1Down:connect(function()
  57. Open.Visible = false
  58. Main.Visible = true
  59. end)
  60.  
  61. Main.Name = "Main"
  62. Main.Parent = ScreenGui
  63. Main.BackgroundColor3 = Color3.fromRGB(71, 219, 232)
  64. Main.Position = UDim2.new(0.438402712, 0, 0, 0)
  65. Main.Size = UDim2.new(0, 383, 0, 486)
  66. Main.Active = true
  67. Main.Draggable = true
  68. Main.Visible = false
  69.  
  70. Close.Name = "Close"
  71. Close.Parent = Main
  72. Close.BackgroundColor3 = Color3.fromRGB(48, 150, 157)
  73. Close.Position = UDim2.new(-0.0972082838, 0, 0.101414666, 0)
  74. Close.Size = UDim2.new(0, 37, 0, 38)
  75. Close.Font = Enum.Font.GothamBold
  76. Close.Text = "X"
  77. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  78. Close.TextSize = 14.000
  79. Close.MouseButton1Down:connect(function()
  80. Main.Visible = false
  81. Open.Visible = true
  82. end)
  83.  
  84. By.Name = "By"
  85. By.Parent = Main
  86. By.BackgroundColor3 = Color3.fromRGB(53, 167, 175)
  87. By.Position = UDim2.new(-0.091412738, 0, 0, 0)
  88. By.Size = UDim2.new(0, 426, 0, 50)
  89. By.Font = Enum.Font.GothamBold
  90. By.Text = "Break In (Story) gui by SalatBlitz"
  91. By.TextColor3 = Color3.fromRGB(0, 0, 0)
  92. By.TextSize = 14.000
  93.  
  94. ITEMS.Name = "ITEMS"
  95. ITEMS.Parent = Main
  96. ITEMS.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  97. ITEMS.Position = UDim2.new(0.203334212, 0, 0.122326925, 0)
  98. ITEMS.Size = UDim2.new(0, 200, 0, 27)
  99. ITEMS.Font = Enum.Font.GothamBlack
  100. ITEMS.Text = "Give Items"
  101. ITEMS.TextColor3 = Color3.fromRGB(0, 0, 0)
  102. ITEMS.TextSize = 14.000
  103.  
  104. Chips.Name = "Chips"
  105. Chips.Parent = Main
  106. Chips.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  107. Chips.Position = UDim2.new(0, 0, 0.204812855, 0)
  108. Chips.Size = UDim2.new(0, 100, 0, 29)
  109. Chips.Font = Enum.Font.SourceSans
  110. Chips.Text = "Chips"
  111. Chips.TextColor3 = Color3.fromRGB(0, 0, 0)
  112. Chips.TextSize = 14.000
  113. Chips.MouseButton1Down:connect(function()
  114. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  115. end)
  116.  
  117. Cola.Name = "Cola"
  118. Cola.Parent = Main
  119. Cola.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  120. Cola.Position = UDim2.new(0.297650129, 0, 0.203703701, 0)
  121. Cola.Size = UDim2.new(0, 100, 0, 29)
  122. Cola.Font = Enum.Font.SourceSans
  123. Cola.Text = "BloxyCola"
  124. Cola.TextColor3 = Color3.fromRGB(0, 0, 0)
  125. Cola.TextSize = 14.000
  126. Cola.MouseButton1Down:connect(function()
  127. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")
  128. end)
  129.  
  130. Gun.Name = "Gun"
  131. Gun.Parent = Main
  132. Gun.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  133. Gun.Position = UDim2.new(0.608355045, 0, 0.203703701, 0)
  134. Gun.Size = UDim2.new(0, 100, 0, 29)
  135. Gun.Font = Enum.Font.SourceSans
  136. Gun.Text = "Gun (in spawn)"
  137. Gun.TextColor3 = Color3.fromRGB(0, 0, 0)
  138. Gun.TextSize = 14.000
  139. Gun.MouseButton1Down:connect(function()
  140. local A_1 = "Gun"
  141. local A_2 = true
  142. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  143. Event:FireServer(A_1, A_2)
  144. end)
  145.  
  146. Bat.Name = "Bat"
  147. Bat.Parent = Main
  148. Bat.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  149. Bat.Position = UDim2.new(0, 0, 0.294238687, 0)
  150. Bat.Size = UDim2.new(0, 100, 0, 29)
  151. Bat.Font = Enum.Font.SourceSans
  152. Bat.Text = "Bat"
  153. Bat.TextColor3 = Color3.fromRGB(0, 0, 0)
  154. Bat.TextSize = 14.000
  155. Bat.MouseButton1Down:connect(function()
  156. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Bat")
  157. end)
  158.  
  159. Apple.Name = "Apple"
  160. Apple.Parent = Main
  161. Apple.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  162. Apple.Position = UDim2.new(0.297650129, 0, 0.294238687, 0)
  163. Apple.Size = UDim2.new(0, 100, 0, 29)
  164. Apple.Font = Enum.Font.SourceSans
  165. Apple.Text = "Apple"
  166. Apple.TextColor3 = Color3.fromRGB(0, 0, 0)
  167. Apple.TextSize = 14.000
  168. Apple.MouseButton1Down:connect(function()
  169. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  170. end)
  171.  
  172. MedKit.Name = "MedKit"
  173. MedKit.Parent = Main
  174. MedKit.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  175. MedKit.Position = UDim2.new(0.608355105, 0, 0.294238687, 0)
  176. MedKit.Size = UDim2.new(0, 100, 0, 29)
  177. MedKit.Font = Enum.Font.SourceSans
  178. MedKit.Text = "Medkit"
  179. MedKit.TextColor3 = Color3.fromRGB(0, 0, 0)
  180. MedKit.TextSize = 14.000
  181. MedKit.MouseButton1Down:connect(function()
  182. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")
  183. end)
  184.  
  185. Pizza.Name = "Pizza"
  186. Pizza.Parent = Main
  187. Pizza.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  188. Pizza.Position = UDim2.new(0, 0, 0.38271606, 0)
  189. Pizza.Size = UDim2.new(0, 100, 0, 29)
  190. Pizza.Font = Enum.Font.SourceSans
  191. Pizza.Text = "Pizza"
  192. Pizza.TextColor3 = Color3.fromRGB(0, 0, 0)
  193. Pizza.TextSize = 14.000
  194. Pizza.MouseButton1Down:connect(function()
  195. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza2")
  196. end)
  197.  
  198. Cookie.Name = "Cookie"
  199. Cookie.Parent = Main
  200. Cookie.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  201. Cookie.Position = UDim2.new(0.297650129, 0, 0.38271606, 0)
  202. Cookie.Size = UDim2.new(0, 100, 0, 29)
  203. Cookie.Font = Enum.Font.SourceSans
  204. Cookie.Text = "Cookie"
  205. Cookie.TextColor3 = Color3.fromRGB(0, 0, 0)
  206. Cookie.TextSize = 14.000
  207. Cookie.MouseButton1Down:connect(function()
  208. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")
  209. end)
  210.  
  211. EpicPizza.Name = "EpicPizza"
  212. EpicPizza.Parent = Main
  213. EpicPizza.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  214. EpicPizza.Position = UDim2.new(0.608355105, 0, 0.38271606, 0)
  215. EpicPizza.Size = UDim2.new(0, 100, 0, 29)
  216. EpicPizza.Font = Enum.Font.SourceSans
  217. EpicPizza.Text = "EpicPizza"
  218. EpicPizza.TextColor3 = Color3.fromRGB(0, 0, 0)
  219. EpicPizza.TextSize = 14.000
  220. EpicPizza.MouseButton1Down:connect(function()
  221. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("EpicPizza")
  222. end)
  223.  
  224. Key.Name = "Key"
  225. Key.Parent = Main
  226. Key.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  227. Key.Position = UDim2.new(-0.0026109661, 0, 0.469135821, 0)
  228. Key.Size = UDim2.new(0, 101, 0, 28)
  229. Key.Font = Enum.Font.SourceSans
  230. Key.Text = "Key"
  231. Key.TextColor3 = Color3.fromRGB(0, 0, 0)
  232. Key.TextSize = 14.000
  233. Key.MouseButton1Down:connect(function()
  234. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Key")
  235. end)
  236.  
  237. Teddy.Name = "Teddy"
  238. Teddy.Parent = Main
  239. Teddy.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  240. Teddy.Position = UDim2.new(0.297650129, 0, 0.469135791, 0)
  241. Teddy.Size = UDim2.new(0, 100, 0, 29)
  242. Teddy.Font = Enum.Font.SourceSans
  243. Teddy.Text = "TeddyBloxpin"
  244. Teddy.TextColor3 = Color3.fromRGB(0, 0, 0)
  245. Teddy.TextSize = 14.000
  246. Teddy.MouseButton1Down:connect(function()
  247. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("TeddyBloxpin")
  248. end)
  249.  
  250. Sword.Name = "Sword"
  251. Sword.Parent = Main
  252. Sword.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  253. Sword.Position = UDim2.new(0.608355105, 0, 0.469135791, 0)
  254. Sword.Size = UDim2.new(0, 100, 0, 29)
  255. Sword.Font = Enum.Font.SourceSans
  256. Sword.Text = "Sword"
  257. Sword.TextColor3 = Color3.fromRGB(0, 0, 0)
  258. Sword.TextSize = 14.000
  259. Sword.MouseButton1Down:connect(function()
  260. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Sword")
  261. end)
  262.  
  263. Pan.Name = "Pan"
  264. Pan.Parent = Main
  265. Pan.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  266. Pan.Position = UDim2.new(0.9007833, 0, 0.203703701, 0)
  267. Pan.Size = UDim2.new(0, 38, 0, 50)
  268. Pan.Font = Enum.Font.SourceSans
  269. Pan.Text = "Pan"
  270. Pan.TextColor3 = Color3.fromRGB(0, 0, 0)
  271. Pan.TextSize = 14.000
  272. Pan.MouseButton1Down:connect(function()
  273. game.ReplicatedStorage.RemoteEvents.BuyItem:FireServer("Pan", 0)
  274. end)
  275.  
  276. Teleports.Name = "Teleports"
  277. Teleports.Parent = Main
  278. Teleports.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  279. Teleports.BorderColor3 = Color3.fromRGB(45, 141, 148)
  280. Teleports.Position = UDim2.new(0.201044381, 0, 0.55349797, 0)
  281. Teleports.Size = UDim2.new(0, 200, 0, 29)
  282. Teleports.Font = Enum.Font.GothamBlack
  283. Teleports.Text = "Teleports"
  284. Teleports.TextColor3 = Color3.fromRGB(0, 0, 0)
  285. Teleports.TextSize = 14.000
  286.  
  287. Hacks.Name = "Hacks"
  288. Hacks.Parent = Main
  289. Hacks.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  290. Hacks.Position = UDim2.new(0.9007833, 0, 0.327160507, 0)
  291. Hacks.Size = UDim2.new(0, 38, 0, 98)
  292. Hacks.Font = Enum.Font.SourceSans
  293. Hacks.Text = "Jump hack, speed hack, noclip (e)"
  294. Hacks.TextColor3 = Color3.fromRGB(0, 0, 0)
  295. Hacks.TextSize = 14.000
  296. Hacks.TextWrapped = true
  297. Hacks.MouseButton1Down:connect(function()
  298. game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid").WalkSpeed = 35
  299. game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid").JumpPower = 65
  300. local noclip = false
  301. game:GetService('RunService').Stepped:connect(function()
  302. if noclip then
  303. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  304. end
  305. end)
  306.  
  307. local plr = game.Players.LocalPlayer
  308. local mouse = plr:GetMouse()
  309. mouse.KeyDown:connect(function(key)
  310. if key == 'e' then
  311. noclip = not noclip
  312. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  313. end
  314. end)
  315.  
  316.  
  317. end)
  318.  
  319. Basement.Name = "Basement"
  320. Basement.Parent = Main
  321. Basement.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  322. Basement.Position = UDim2.new(0, 0, 0.646090508, 0)
  323. Basement.Size = UDim2.new(0, 100, 0, 29)
  324. Basement.Font = Enum.Font.SourceSans
  325. Basement.Text = "Basement"
  326. Basement.TextColor3 = Color3.fromRGB(0, 0, 0)
  327. Basement.TextSize = 14.000
  328. Basement.MouseButton1Down:connect(function()
  329. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(71, -15, -163)
  330. end)
  331.  
  332. house.Name = "house"
  333. house.Parent = Main
  334. house.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  335. house.Position = UDim2.new(0.297650129, 0, 0.646090508, 0)
  336. house.Size = UDim2.new(0, 100, 0, 29)
  337. house.Font = Enum.Font.SourceSans
  338. house.Text = "House"
  339. house.TextColor3 = Color3.fromRGB(0, 0, 0)
  340. house.TextSize = 14.000
  341. house.MouseButton1Down:connect(function()
  342. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-36, 3, -200)
  343. end)
  344.  
  345. Attic.Name = "Attic"
  346. Attic.Parent = Main
  347. Attic.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  348. Attic.Position = UDim2.new(0.608355105, 0, 0.646090508, 0)
  349. Attic.Size = UDim2.new(0, 100, 0, 29)
  350. Attic.Font = Enum.Font.SourceSans
  351. Attic.Text = "Attic"
  352. Attic.TextColor3 = Color3.fromRGB(0, 0, 0)
  353. Attic.TextSize = 14.000
  354. Attic.MouseButton1Down:connect(function()
  355. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16, 35, -220)
  356. end)
  357.  
  358. Store.Name = "Store"
  359. Store.Parent = Main
  360. Store.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  361. Store.Position = UDim2.new(0, 0, 0.728395045, 0)
  362. Store.Size = UDim2.new(0, 100, 0, 28)
  363. Store.Font = Enum.Font.SourceSans
  364. Store.Text = "Store"
  365. Store.TextColor3 = Color3.fromRGB(0, 0, 0)
  366. Store.TextSize = 14.000
  367. Store.MouseButton1Down:connect(function()
  368. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-422, 3, -121)
  369. end)
  370.  
  371. Sewer.Name = "Sewer"
  372. Sewer.Parent = Main
  373. Sewer.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  374. Sewer.Position = UDim2.new(0.297650129, 0, 0.728395045, 0)
  375. Sewer.Size = UDim2.new(0, 100, 0, 28)
  376. Sewer.Font = Enum.Font.SourceSans
  377. Sewer.Text = "Sewer"
  378. Sewer.TextColor3 = Color3.fromRGB(0, 0, 0)
  379. Sewer.TextSize = 14.000
  380. Sewer.MouseButton1Down:connect(function()
  381. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(129, 3, -125)
  382. end)
  383.  
  384. BossRoom.Name = "BossRoom"
  385. BossRoom.Parent = Main
  386. BossRoom.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  387. BossRoom.Position = UDim2.new(0.608355105, 0, 0.728395045, 0)
  388. BossRoom.Size = UDim2.new(0, 100, 0, 28)
  389. BossRoom.Font = Enum.Font.SourceSans
  390. BossRoom.Text = "BossRoom"
  391. BossRoom.TextColor3 = Color3.fromRGB(0, 0, 0)
  392. BossRoom.TextSize = 14.000
  393. BossRoom.MouseButton1Down:connect(function()
  394. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-39, -287, -1480)
  395. end)
  396.  
  397. Remotes.Name = "Remotes"
  398. Remotes.Parent = Main
  399. Remotes.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  400. Remotes.Position = UDim2.new(0.201044381, 0, 0.804526746, 0)
  401. Remotes.Size = UDim2.new(0, 200, 0, 25)
  402. Remotes.Font = Enum.Font.GothamBlack
  403. Remotes.Text = "Remotes"
  404. Remotes.TextColor3 = Color3.fromRGB(0, 0, 0)
  405. Remotes.TextSize = 14.000
  406.  
  407. Cat.Name = "Cat"
  408. Cat.Parent = Main
  409. Cat.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  410. Cat.Position = UDim2.new(-0.0026109661, 0, 0.874485612, 0)
  411. Cat.Size = UDim2.new(0, 101, 0, 24)
  412. Cat.Font = Enum.Font.SourceSans
  413. Cat.Text = "Befriend Cat"
  414. Cat.TextColor3 = Color3.fromRGB(0, 0, 0)
  415. Cat.TextSize = 14.000
  416. Cat.MouseButton1Down:connect(function()
  417. local Target = game:GetService("ReplicatedStorage").RemoteEvents.Cattery;
  418. Target:FireServer();
  419. end)
  420.  
  421. KillEnemies.Name = "KillEnemies"
  422. KillEnemies.Parent = Main
  423. KillEnemies.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  424. KillEnemies.Position = UDim2.new(0.297650129, 0, 0.874485612, 0)
  425. KillEnemies.Size = UDim2.new(0, 81, 0, 24)
  426. KillEnemies.Font = Enum.Font.SourceSans
  427. KillEnemies.Text = "Kill Enemies"
  428. KillEnemies.TextColor3 = Color3.fromRGB(0, 0, 0)
  429. KillEnemies.TextSize = 14.000
  430. KillEnemies.MouseButton1Down:connect(function()
  431. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  432. for i = 1, 50 do
  433. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,10)
  434. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  435. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,9)
  436. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,8)
  437. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  438. end
  439. end
  440. end)
  441.  
  442. Heal.Name = "Heal"
  443. Heal.Parent = Main
  444. Heal.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  445. Heal.Position = UDim2.new(0.558746755, 0, 0.874485612, 0)
  446. Heal.Size = UDim2.new(0, 76, 0, 24)
  447. Heal.Font = Enum.Font.SourceSans
  448. Heal.Text = "Insta Heal"
  449. Heal.TextColor3 = Color3.fromRGB(0, 0, 0)
  450. Heal.TextSize = 14.000
  451. Heal.MouseButton1Down:connect(function()
  452. for i = 1, 200 do
  453. wait(0.0001)
  454. local A_1 = "Cat"
  455. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Energy
  456. Event:FireServer(A_1)
  457. end
  458. end)
  459.  
  460. RemoveTools.Name = "RemoveTools"
  461. RemoveTools.Parent = Main
  462. RemoveTools.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  463. RemoveTools.Position = UDim2.new(0.785900772, 0, 0.874485612, 0)
  464. RemoveTools.Size = UDim2.new(0, 82, 0, 24)
  465. RemoveTools.Font = Enum.Font.SourceSans
  466. RemoveTools.Text = "RemoveTools"
  467. RemoveTools.TextColor3 = Color3.fromRGB(0, 0, 0)
  468. RemoveTools.TextSize = 14.000
  469. RemoveTools.MouseButton1Down:connect(function()
  470. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  471. if v:IsA("Tool") then
  472. v:Destroy()
  473. end
  474. end
  475. end)
  476.  
  477. ToolDrop.Name = "ToolDrop"
  478. ToolDrop.Parent = Main
  479. ToolDrop.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  480. ToolDrop.Position = UDim2.new(-0.0026109661, 0, 0.952674866, 0)
  481. ToolDrop.Size = UDim2.new(0, 101, 0, 23)
  482. ToolDrop.Font = Enum.Font.SourceSans
  483. ToolDrop.Text = "ToolDrop"
  484. ToolDrop.TextColor3 = Color3.fromRGB(0, 0, 0)
  485. ToolDrop.TextSize = 14.000
  486. ToolDrop.MouseButton1Down:connect(function()
  487. while wait(1) do
  488. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  489. if v:IsA("Tool") then
  490. v.CanBeDropped = true
  491. end
  492. end
  493. end
  494. end)
  495.  
  496. OpenSafe.Name = "OpenSafe"
  497. OpenSafe.Parent = Main
  498. OpenSafe.BackgroundColor3 = Color3.fromRGB(45, 141, 148)
  499. OpenSafe.Position = UDim2.new(0.297650129, 0, 0.952674925, 0)
  500. OpenSafe.Size = UDim2.new(0, 81, 0, 23)
  501. OpenSafe.Font = Enum.Font.SourceSans
  502. OpenSafe.Text = "Open Safe"
  503. OpenSafe.TextColor3 = Color3.fromRGB(0, 0, 0)
  504. OpenSafe.TextSize = 14.000
  505. OpenSafe.MouseButton1Down:connect(function()
  506. game.ReplicatedStorage.RemoteEvents.Safe:FireServer(game:GetService("Workspace").CodeNote.SurfaceGui.TextLabel.Text)
  507. end)
  508.  
  509. --! รคlคt#0437
  510. --GUI to LUA
  511.  
  512.  
  513.  
  514. -- Instances:
  515.  
  516. local ScreenGui = Instance.new("ScreenGui")
  517. local Frame = Instance.new("Frame")
  518. local TextButton = Instance.new("TextButton")
  519. local TextLabel = Instance.new("TextLabel")
  520. local Frame_2 = Instance.new("Frame")
  521. local TextButton_2 = Instance.new("TextButton")
  522. local TextButton_3 = Instance.new("TextButton")
  523. local TextButton_4 = Instance.new("TextButton")
  524. local TextButton_5 = Instance.new("TextButton")
  525. local TextButton_6 = Instance.new("TextButton")
  526. local TextButton_7 = Instance.new("TextButton")
  527. local TextButton_8 = Instance.new("TextButton")
  528. local TextButton_9 = Instance.new("TextButton")
  529. local TextLabel_2 = Instance.new("TextLabel")
  530. local Frame2 = Instance.new("Frame")
  531. local TextButton_10 = Instance.new("TextButton")
  532. local TextLabel_3 = Instance.new("TextLabel")
  533. local Frame_3 = Instance.new("Frame")
  534. local TextButton_11 = Instance.new("TextButton")
  535. local TextButton_12 = Instance.new("TextButton")
  536. local TextButton_13 = Instance.new("TextButton")
  537. local TextButton_14 = Instance.new("TextButton")
  538. local TextButton_15 = Instance.new("TextButton")
  539. local TextButton_16 = Instance.new("TextButton")
  540. local TextButton_17 = Instance.new("TextButton")
  541. local TextButton_18 = Instance.new("TextButton")
  542. local TextButton_19 = Instance.new("TextButton")
  543. local TextButton_20 = Instance.new("TextButton")
  544. local TextButton_21 = Instance.new("TextButton")
  545. local TextButton_22 = Instance.new("TextButton")
  546. local TextLabel_4 = Instance.new("TextLabel")
  547. local Frame3 = Instance.new("Frame")
  548. local TextButton_23 = Instance.new("TextButton")
  549. local TextLabel_5 = Instance.new("TextLabel")
  550. local Frame_4 = Instance.new("Frame")
  551. local TextButton_24 = Instance.new("TextButton")
  552. local TextButton_25 = Instance.new("TextButton")
  553. local TextButton_26 = Instance.new("TextButton")
  554. local TextButton_27 = Instance.new("TextButton")
  555. local TextButton_28 = Instance.new("TextButton")
  556. local TextButton_29 = Instance.new("TextButton")
  557. local TextLabel_6 = Instance.new("TextLabel")
  558. local Frame4 = Instance.new("Frame")
  559. local TextButton_30 = Instance.new("TextButton")
  560. local TextLabel_7 = Instance.new("TextLabel")
  561. local Frame_5 = Instance.new("Frame")
  562. local TextLabel_8 = Instance.new("TextLabel")
  563. local TextLabel_9 = Instance.new("TextLabel")
  564. local TextLabel_10 = Instance.new("TextLabel")
  565.  
  566. --[[
  567. Properties:
  568. --]]
  569.  
  570. ScreenGui.Parent = game.CoreGui
  571. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  572. ScreenGui.ResetOnSpawn = false
  573.  
  574. Frame.Parent = ScreenGui
  575. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  576. Frame.BorderSizePixel = 0
  577. Frame.Position = UDim2.new(0.0383211672, 0, 0.0656063631, 0)
  578. Frame.Size = UDim2.new(0.0994525552, 0, 0.0337972157, 0)
  579. Frame.Active = true
  580. Frame.Draggable = true
  581.  
  582. TextButton.Parent = Frame
  583. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  584. TextButton.BackgroundTransparency = 1
  585. TextButton.BorderSizePixel = 0
  586. TextButton.Position = UDim2.new(0.854838729, 0, 0, 0)
  587. TextButton.Size = UDim2.new(0.145161286, 0, 1, 0)
  588. TextButton.Font = Enum.Font.SourceSansLight
  589. TextButton.Text = "-"
  590. TextButton.TextColor3 = Color3.new(1, 1, 1)
  591. TextButton.TextScaled = true
  592. TextButton.TextSize = 14
  593. TextButton.TextWrapped = true
  594.  
  595. TextLabel.Parent = Frame
  596. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  597. TextLabel.BackgroundTransparency = 1
  598. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  599. TextLabel.Font = Enum.Font.SourceSansLight
  600. TextLabel.Text = "Main"
  601. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  602. TextLabel.TextScaled = true
  603. TextLabel.TextSize = 14
  604. TextLabel.TextWrapped = true
  605.  
  606. Frame_2.Parent = Frame
  607. Frame_2.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  608. Frame_2.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  609. Frame_2.BorderSizePixel = 0
  610. Frame_2.Position = UDim2.new(0, 0, 1.02900004, 0)
  611. Frame_2.Size = UDim2.new(1, 0, 6.1500001, 0)
  612.  
  613. TextButton_2.Parent = Frame_2
  614. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  615. TextButton_2.BackgroundTransparency = 1
  616. TextButton_2.BorderSizePixel = 0
  617. TextButton_2.Position = UDim2.new(0, 0, 0.0272358228, 0)
  618. TextButton_2.Size = UDim2.new(1, 0, 0.124845669, 0)
  619. TextButton_2.Font = Enum.Font.SourceSansLight
  620. TextButton_2.Text = "Befriend Cat"
  621. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  622. TextButton_2.TextScaled = true
  623. TextButton_2.TextSize = 16
  624. TextButton_2.TextWrapped = true
  625.  
  626. TextButton_3.Parent = Frame_2
  627. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  628. TextButton_3.BackgroundTransparency = 1
  629. TextButton_3.BorderSizePixel = 0
  630. TextButton_3.Position = UDim2.new(0, 0, 0.148021415, 0)
  631. TextButton_3.Size = UDim2.new(1, 0, 0.124845669, 0)
  632. TextButton_3.Font = Enum.Font.SourceSansLight
  633. TextButton_3.Text = "Enable Tooldrop"
  634. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  635. TextButton_3.TextScaled = true
  636. TextButton_3.TextSize = 16
  637. TextButton_3.TextWrapped = true
  638.  
  639. TextButton_4.Parent = Frame_2
  640. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  641. TextButton_4.BackgroundTransparency = 1
  642. TextButton_4.BorderSizePixel = 0
  643. TextButton_4.Position = UDim2.new(0, 0, 0.268807083, 0)
  644. TextButton_4.Size = UDim2.new(1, 0, 0.124845669, 0)
  645. TextButton_4.Font = Enum.Font.SourceSansLight
  646. TextButton_4.Text = "Heal All"
  647. TextButton_4.TextColor3 = Color3.new(1, 1, 1)
  648. TextButton_4.TextScaled = true
  649. TextButton_4.TextSize = 16
  650. TextButton_4.TextWrapped = true
  651.  
  652. TextButton_5.Parent = Frame_2
  653. TextButton_5.BackgroundColor3 = Color3.new(1, 1, 1)
  654. TextButton_5.BackgroundTransparency = 1
  655. TextButton_5.BorderSizePixel = 0
  656. TextButton_5.Position = UDim2.new(0, 0, 0.389592737, 0)
  657. TextButton_5.Size = UDim2.new(1, 0, 0.124845669, 0)
  658. TextButton_5.Font = Enum.Font.SourceSansLight
  659. TextButton_5.Text = "Remove Tools"
  660. TextButton_5.TextColor3 = Color3.new(1, 1, 1)
  661. TextButton_5.TextScaled = true
  662. TextButton_5.TextSize = 16
  663. TextButton_5.TextWrapped = true
  664.  
  665. TextButton_6.Parent = Frame_2
  666. TextButton_6.BackgroundColor3 = Color3.new(1, 1, 1)
  667. TextButton_6.BackgroundTransparency = 1
  668. TextButton_6.BorderSizePixel = 0
  669. TextButton_6.Position = UDim2.new(0, 0, 0.51037842, 0)
  670. TextButton_6.Size = UDim2.new(1, 0, 0.124845669, 0)
  671. TextButton_6.Font = Enum.Font.SourceSansLight
  672. TextButton_6.Text = "Insta Heal"
  673. TextButton_6.TextColor3 = Color3.new(1, 1, 1)
  674. TextButton_6.TextScaled = true
  675. TextButton_6.TextSize = 16
  676. TextButton_6.TextWrapped = true
  677.  
  678. TextButton_7.Parent = Frame_2
  679. TextButton_7.BackgroundColor3 = Color3.new(1, 1, 1)
  680. TextButton_7.BackgroundTransparency = 1
  681. TextButton_7.BorderSizePixel = 0
  682. TextButton_7.Position = UDim2.new(0, 0, 0.631163955, 0)
  683. TextButton_7.Size = UDim2.new(1, 0, 0.124845669, 0)
  684. TextButton_7.Font = Enum.Font.SourceSansLight
  685. TextButton_7.Text = "Cooking Pan"
  686. TextButton_7.TextColor3 = Color3.new(1, 1, 1)
  687. TextButton_7.TextScaled = true
  688. TextButton_7.TextSize = 16
  689. TextButton_7.TextWrapped = true
  690.  
  691. TextButton_8.Parent = Frame_2
  692. TextButton_8.BackgroundColor3 = Color3.new(1, 1, 1)
  693. TextButton_8.BackgroundTransparency = 1
  694. TextButton_8.BorderSizePixel = 0
  695. TextButton_8.Position = UDim2.new(0, 0, 0.751949549, 0)
  696. TextButton_8.Size = UDim2.new(1, 0, 0.124845669, 0)
  697. TextButton_8.Font = Enum.Font.SourceSansLight
  698. TextButton_8.Text = "Kill Enemies"
  699. TextButton_8.TextColor3 = Color3.new(1, 1, 1)
  700. TextButton_8.TextScaled = true
  701. TextButton_8.TextSize = 16
  702. TextButton_8.TextWrapped = true
  703.  
  704. TextButton_9.Parent = Frame_2
  705. TextButton_9.BackgroundColor3 = Color3.new(1, 1, 1)
  706. TextButton_9.BackgroundTransparency = 1
  707. TextButton_9.BorderSizePixel = 0
  708. TextButton_9.Position = UDim2.new(0, 0, 0.879840255, 0)
  709. TextButton_9.Size = UDim2.new(1, 0, 0.124845669, 0)
  710. TextButton_9.Font = Enum.Font.SourceSansLight
  711. TextButton_9.Text = "Unlock Vault"
  712. TextButton_9.TextColor3 = Color3.new(1, 1, 1)
  713. TextButton_9.TextScaled = true
  714. TextButton_9.TextSize = 16
  715. TextButton_9.TextWrapped = true
  716.  
  717. TextLabel_2.Parent = Frame
  718. TextLabel_2.BackgroundColor3 = Color3.new(1, 0, 0)
  719. TextLabel_2.BorderSizePixel = 0
  720. TextLabel_2.Position = UDim2.new(0, 0, 1, 0)
  721. TextLabel_2.Size = UDim2.new(1, 0, 0.100000001, 0)
  722. TextLabel_2.ZIndex = 5
  723. TextLabel_2.Font = Enum.Font.SourceSans
  724. TextLabel_2.Text = ""
  725. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  726. TextLabel_2.TextSize = 14
  727.  
  728. Frame2.Name = "Frame2"
  729. Frame2.Parent = ScreenGui
  730. Frame2.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  731. Frame2.BorderSizePixel = 0
  732. Frame2.Position = UDim2.new(0.160583943, 0, 0.0656063631, 0)
  733. Frame2.Size = UDim2.new(0.0994525552, 0, 0.0337972157, 0)
  734. Frame2.Active = true
  735. Frame2.Draggable = true
  736.  
  737. TextButton_10.Parent = Frame2
  738. TextButton_10.BackgroundColor3 = Color3.new(1, 1, 1)
  739. TextButton_10.BackgroundTransparency = 1
  740. TextButton_10.BorderSizePixel = 0
  741. TextButton_10.Position = UDim2.new(0.854838729, 0, 0, 0)
  742. TextButton_10.Size = UDim2.new(0.145161286, 0, 1, 0)
  743. TextButton_10.Font = Enum.Font.SourceSansLight
  744. TextButton_10.Text = "-"
  745. TextButton_10.TextColor3 = Color3.new(1, 1, 1)
  746. TextButton_10.TextScaled = true
  747. TextButton_10.TextSize = 14
  748. TextButton_10.TextWrapped = true
  749.  
  750. TextLabel_3.Parent = Frame2
  751. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  752. TextLabel_3.BackgroundTransparency = 1
  753. TextLabel_3.Size = UDim2.new(1, 0, 1, 0)
  754. TextLabel_3.Font = Enum.Font.SourceSansLight
  755. TextLabel_3.Text = "Give Stuff"
  756. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  757. TextLabel_3.TextScaled = true
  758. TextLabel_3.TextSize = 14
  759. TextLabel_3.TextWrapped = true
  760.  
  761. Frame_3.Parent = Frame2
  762. Frame_3.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  763. Frame_3.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  764. Frame_3.BorderSizePixel = 0
  765. Frame_3.Position = UDim2.new(0, 0, 1.02900004, 0)
  766. Frame_3.Size = UDim2.new(1, 0, 8.35000038, 0)
  767.  
  768. TextButton_11.Parent = Frame_3
  769. TextButton_11.BackgroundColor3 = Color3.new(1, 1, 1)
  770. TextButton_11.BackgroundTransparency = 1
  771. TextButton_11.BorderSizePixel = 0
  772. TextButton_11.Position = UDim2.new(0, 0, 0.0811280012, 0)
  773. TextButton_11.Size = UDim2.new(1, 0, 0.0839999989, 0)
  774. TextButton_11.Font = Enum.Font.SourceSansLight
  775. TextButton_11.Text = "BloxyCola"
  776. TextButton_11.TextColor3 = Color3.new(1, 1, 1)
  777. TextButton_11.TextScaled = true
  778. TextButton_11.TextSize = 16
  779. TextButton_11.TextWrapped = true
  780.  
  781. TextButton_12.Parent = Frame_3
  782. TextButton_12.BackgroundColor3 = Color3.new(1, 1, 1)
  783. TextButton_12.BackgroundTransparency = 1
  784. TextButton_12.BorderSizePixel = 0
  785. TextButton_12.Position = UDim2.new(0, 0, 0.16496034, 0)
  786. TextButton_12.Size = UDim2.new(1, 0, 0.0839999989, 0)
  787. TextButton_12.Font = Enum.Font.SourceSansLight
  788. TextButton_12.Text = "Lolipop"
  789. TextButton_12.TextColor3 = Color3.new(1, 1, 1)
  790. TextButton_12.TextScaled = true
  791. TextButton_12.TextSize = 16
  792. TextButton_12.TextWrapped = true
  793.  
  794. TextButton_13.Parent = Frame_3
  795. TextButton_13.BackgroundColor3 = Color3.new(1, 1, 1)
  796. TextButton_13.BackgroundTransparency = 1
  797. TextButton_13.BorderSizePixel = 0
  798. TextButton_13.Position = UDim2.new(0, 0, 0.248792678, 0)
  799. TextButton_13.Size = UDim2.new(1, 0, 0.0839999989, 0)
  800. TextButton_13.Font = Enum.Font.SourceSansLight
  801. TextButton_13.Text = "Bat"
  802. TextButton_13.TextColor3 = Color3.new(1, 1, 1)
  803. TextButton_13.TextScaled = true
  804. TextButton_13.TextSize = 16
  805. TextButton_13.TextWrapped = true
  806.  
  807. TextButton_14.Parent = Frame_3
  808. TextButton_14.BackgroundColor3 = Color3.new(1, 1, 1)
  809. TextButton_14.BackgroundTransparency = 1
  810. TextButton_14.BorderSizePixel = 0
  811. TextButton_14.Position = UDim2.new(0, 0, 0.320648968, 0)
  812. TextButton_14.Size = UDim2.new(1, 0, 0.0839999989, 0)
  813. TextButton_14.Font = Enum.Font.SourceSansLight
  814. TextButton_14.Text = "Apple"
  815. TextButton_14.TextColor3 = Color3.new(1, 1, 1)
  816. TextButton_14.TextScaled = true
  817. TextButton_14.TextSize = 16
  818. TextButton_14.TextWrapped = true
  819.  
  820. TextButton_15.Parent = Frame_3
  821. TextButton_15.BackgroundColor3 = Color3.new(1, 1, 1)
  822. TextButton_15.BackgroundTransparency = 1
  823. TextButton_15.BorderSizePixel = 0
  824. TextButton_15.Position = UDim2.new(0, 0, 0.404481292, 0)
  825. TextButton_15.Size = UDim2.new(1, 0, 0.0839999989, 0)
  826. TextButton_15.Font = Enum.Font.SourceSansLight
  827. TextButton_15.Text = "TeddyBloxpin"
  828. TextButton_15.TextColor3 = Color3.new(1, 1, 1)
  829. TextButton_15.TextScaled = true
  830. TextButton_15.TextSize = 16
  831. TextButton_15.TextWrapped = true
  832.  
  833. TextButton_16.Parent = Frame_3
  834. TextButton_16.BackgroundColor3 = Color3.new(1, 1, 1)
  835. TextButton_16.BackgroundTransparency = 1
  836. TextButton_16.BorderSizePixel = 0
  837. TextButton_16.Position = UDim2.new(0, 0, 0.488313615, 0)
  838. TextButton_16.Size = UDim2.new(1, 0, 0.0839999989, 0)
  839. TextButton_16.Font = Enum.Font.SourceSansLight
  840. TextButton_16.Text = "Linked Sword"
  841. TextButton_16.TextColor3 = Color3.new(1, 1, 1)
  842. TextButton_16.TextScaled = true
  843. TextButton_16.TextSize = 16
  844. TextButton_16.TextWrapped = true
  845.  
  846. TextButton_17.Parent = Frame_3
  847. TextButton_17.BackgroundColor3 = Color3.new(1, 1, 1)
  848. TextButton_17.BackgroundTransparency = 1
  849. TextButton_17.BorderSizePixel = 0
  850. TextButton_17.Position = UDim2.new(0, 0, 0.572145939, 0)
  851. TextButton_17.Size = UDim2.new(1, 0, 0.0839999989, 0)
  852. TextButton_17.Font = Enum.Font.SourceSansLight
  853. TextButton_17.Text = "Plank"
  854. TextButton_17.TextColor3 = Color3.new(1, 1, 1)
  855. TextButton_17.TextScaled = true
  856. TextButton_17.TextSize = 16
  857. TextButton_17.TextWrapped = true
  858.  
  859. TextButton_18.Parent = Frame_3
  860. TextButton_18.BackgroundColor3 = Color3.new(1, 1, 1)
  861. TextButton_18.BackgroundTransparency = 1
  862. TextButton_18.BorderSizePixel = 0
  863. TextButton_18.Position = UDim2.new(0, 0, 0.655978262, 0)
  864. TextButton_18.Size = UDim2.new(1, 0, 0.0839999989, 0)
  865. TextButton_18.Font = Enum.Font.SourceSansLight
  866. TextButton_18.Text = "Medkit"
  867. TextButton_18.TextColor3 = Color3.new(1, 1, 1)
  868. TextButton_18.TextScaled = true
  869. TextButton_18.TextSize = 16
  870. TextButton_18.TextWrapped = true
  871.  
  872. TextButton_19.Parent = Frame_3
  873. TextButton_19.BackgroundColor3 = Color3.new(1, 1, 1)
  874. TextButton_19.BackgroundTransparency = 1
  875. TextButton_19.BorderSizePixel = 0
  876. TextButton_19.Position = UDim2.new(0, 0, 0.733822584, 0)
  877. TextButton_19.Size = UDim2.new(1, 0, 0.0839999989, 0)
  878. TextButton_19.Font = Enum.Font.SourceSansLight
  879. TextButton_19.Text = "Pizza"
  880. TextButton_19.TextColor3 = Color3.new(1, 1, 1)
  881. TextButton_19.TextScaled = true
  882. TextButton_19.TextSize = 16
  883. TextButton_19.TextWrapped = true
  884.  
  885. TextButton_20.Parent = Frame_3
  886. TextButton_20.BackgroundColor3 = Color3.new(1, 1, 1)
  887. TextButton_20.BackgroundTransparency = 1
  888. TextButton_20.BorderSizePixel = 0
  889. TextButton_20.Position = UDim2.new(0, 0, 0.901487231, 0)
  890. TextButton_20.Size = UDim2.new(1, 0, 0.0839999989, 0)
  891. TextButton_20.Font = Enum.Font.SourceSansLight
  892. TextButton_20.Text = "Cure"
  893. TextButton_20.TextColor3 = Color3.new(1, 1, 1)
  894. TextButton_20.TextScaled = true
  895. TextButton_20.TextSize = 16
  896. TextButton_20.TextWrapped = true
  897.  
  898. TextButton_21.Parent = Frame_3
  899. TextButton_21.BackgroundColor3 = Color3.new(1, 1, 1)
  900. TextButton_21.BackgroundTransparency = 1
  901. TextButton_21.BorderSizePixel = 0
  902. TextButton_21.Position = UDim2.new(0, 0, 0.817654908, 0)
  903. TextButton_21.Size = UDim2.new(1, 0, 0.0839999989, 0)
  904. TextButton_21.Font = Enum.Font.SourceSansLight
  905. TextButton_21.Text = "Cookie"
  906. TextButton_21.TextColor3 = Color3.new(1, 1, 1)
  907. TextButton_21.TextScaled = true
  908. TextButton_21.TextSize = 16
  909. TextButton_21.TextWrapped = true
  910.  
  911. TextButton_22.Parent = Frame_3
  912. TextButton_22.BackgroundColor3 = Color3.new(1, 1, 1)
  913. TextButton_22.BackgroundTransparency = 1
  914. TextButton_22.BorderSizePixel = 0
  915. TextButton_22.Position = UDim2.new(0, 0, 0.00328368694, 0)
  916. TextButton_22.Size = UDim2.new(1, 0, 0.0839999989, 0)
  917. TextButton_22.Font = Enum.Font.SourceSansLight
  918. TextButton_22.Text = "Chips"
  919. TextButton_22.TextColor3 = Color3.new(1, 1, 1)
  920. TextButton_22.TextScaled = true
  921. TextButton_22.TextSize = 16
  922. TextButton_22.TextWrapped = true
  923.  
  924. TextLabel_4.Parent = Frame2
  925. TextLabel_4.BackgroundColor3 = Color3.new(1, 0, 0)
  926. TextLabel_4.BorderSizePixel = 0
  927. TextLabel_4.Position = UDim2.new(0, 0, 1, 0)
  928. TextLabel_4.Size = UDim2.new(1, 0, 0.100000001, 0)
  929. TextLabel_4.ZIndex = 5
  930. TextLabel_4.Font = Enum.Font.SourceSans
  931. TextLabel_4.Text = ""
  932. TextLabel_4.TextColor3 = Color3.new(0, 0, 0)
  933. TextLabel_4.TextSize = 14
  934.  
  935. Frame3.Name = "Frame3"
  936. Frame3.Parent = ScreenGui
  937. Frame3.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  938. Frame3.BorderSizePixel = 0
  939. Frame3.Position = UDim2.new(0.283759147, 0, 0.0656063631, 0)
  940. Frame3.Size = UDim2.new(0.0994525552, 0, 0.0337972157, 0)
  941. Frame3.Active = true
  942. Frame3.Draggable = true
  943.  
  944. TextButton_23.Parent = Frame3
  945. TextButton_23.BackgroundColor3 = Color3.new(1, 1, 1)
  946. TextButton_23.BackgroundTransparency = 1
  947. TextButton_23.BorderSizePixel = 0
  948. TextButton_23.Position = UDim2.new(0.854838729, 0, 0, 0)
  949. TextButton_23.Size = UDim2.new(0.145161286, 0, 1, 0)
  950. TextButton_23.Font = Enum.Font.SourceSansLight
  951. TextButton_23.Text = "-"
  952. TextButton_23.TextColor3 = Color3.new(1, 1, 1)
  953. TextButton_23.TextScaled = true
  954. TextButton_23.TextSize = 14
  955. TextButton_23.TextWrapped = true
  956.  
  957. TextLabel_5.Parent = Frame3
  958. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  959. TextLabel_5.BackgroundTransparency = 1
  960. TextLabel_5.Position = UDim2.new(-3.53902578e-08, 0, 0, 0)
  961. TextLabel_5.Size = UDim2.new(1, 0, 1, 0)
  962. TextLabel_5.Font = Enum.Font.SourceSansLight
  963. TextLabel_5.Text = "Teleports"
  964. TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
  965. TextLabel_5.TextScaled = true
  966. TextLabel_5.TextSize = 14
  967. TextLabel_5.TextWrapped = true
  968.  
  969. Frame_4.Parent = Frame3
  970. Frame_4.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  971. Frame_4.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  972. Frame_4.BorderSizePixel = 0
  973. Frame_4.Position = UDim2.new(0, 0, 1.02900028, 0)
  974. Frame_4.Size = UDim2.new(1, 0, 4.77741718, 0)
  975.  
  976. TextButton_24.Parent = Frame_4
  977. TextButton_24.BackgroundColor3 = Color3.new(1, 1, 1)
  978. TextButton_24.BackgroundTransparency = 1
  979. TextButton_24.BorderSizePixel = 0
  980. TextButton_24.Position = UDim2.new(-5.59955538e-07, 0, 0.0070636007, 0)
  981. TextButton_24.Size = UDim2.new(1, 0, 0.166859761, 0)
  982. TextButton_24.Font = Enum.Font.SourceSansLight
  983. TextButton_24.Text = "House"
  984. TextButton_24.TextColor3 = Color3.new(1, 1, 1)
  985. TextButton_24.TextScaled = true
  986. TextButton_24.TextSize = 16
  987. TextButton_24.TextWrapped = true
  988.  
  989. TextButton_25.Parent = Frame_4
  990. TextButton_25.BackgroundColor3 = Color3.new(1, 1, 1)
  991. TextButton_25.BackgroundTransparency = 1
  992. TextButton_25.BorderSizePixel = 0
  993. TextButton_25.Position = UDim2.new(-5.59955538e-07, 0, 0.17222546, 0)
  994. TextButton_25.Size = UDim2.new(1, 0, 0.166859761, 0)
  995. TextButton_25.Font = Enum.Font.SourceSansLight
  996. TextButton_25.Text = "Basement"
  997. TextButton_25.TextColor3 = Color3.new(1, 1, 1)
  998. TextButton_25.TextScaled = true
  999. TextButton_25.TextSize = 16
  1000. TextButton_25.TextWrapped = true
  1001.  
  1002. TextButton_26.Parent = Frame_4
  1003. TextButton_26.BackgroundColor3 = Color3.new(1, 1, 1)
  1004. TextButton_26.BackgroundTransparency = 1
  1005. TextButton_26.BorderSizePixel = 0
  1006. TextButton_26.Position = UDim2.new(-5.59955538e-07, 0, 0.337387353, 0)
  1007. TextButton_26.Size = UDim2.new(1, 0, 0.166859761, 0)
  1008. TextButton_26.Font = Enum.Font.SourceSansLight
  1009. TextButton_26.Text = "Attic"
  1010. TextButton_26.TextColor3 = Color3.new(1, 1, 1)
  1011. TextButton_26.TextScaled = true
  1012. TextButton_26.TextSize = 16
  1013. TextButton_26.TextWrapped = true
  1014.  
  1015. TextButton_27.Parent = Frame_4
  1016. TextButton_27.BackgroundColor3 = Color3.new(1, 1, 1)
  1017. TextButton_27.BackgroundTransparency = 1
  1018. TextButton_27.BorderSizePixel = 0
  1019. TextButton_27.Position = UDim2.new(-5.59955538e-07, 0, 0.50254941, 0)
  1020. TextButton_27.Size = UDim2.new(1, 0, 0.166859761, 0)
  1021. TextButton_27.Font = Enum.Font.SourceSansLight
  1022. TextButton_27.Text = "Store"
  1023. TextButton_27.TextColor3 = Color3.new(1, 1, 1)
  1024. TextButton_27.TextScaled = true
  1025. TextButton_27.TextSize = 16
  1026. TextButton_27.TextWrapped = true
  1027.  
  1028. TextButton_28.Parent = Frame_4
  1029. TextButton_28.BackgroundColor3 = Color3.new(1, 1, 1)
  1030. TextButton_28.BackgroundTransparency = 1
  1031. TextButton_28.BorderSizePixel = 0
  1032. TextButton_28.Position = UDim2.new(-5.59955538e-07, 0, 0.667711437, 0)
  1033. TextButton_28.Size = UDim2.new(1, 0, 0.166859761, 0)
  1034. TextButton_28.Font = Enum.Font.SourceSansLight
  1035. TextButton_28.Text = "Sewer"
  1036. TextButton_28.TextColor3 = Color3.new(1, 1, 1)
  1037. TextButton_28.TextScaled = true
  1038. TextButton_28.TextSize = 16
  1039. TextButton_28.TextWrapped = true
  1040.  
  1041. TextButton_29.Parent = Frame_4
  1042. TextButton_29.BackgroundColor3 = Color3.new(1, 1, 1)
  1043. TextButton_29.BackgroundTransparency = 1
  1044. TextButton_29.BorderSizePixel = 0
  1045. TextButton_29.Position = UDim2.new(-5.59955538e-07, 0, 0.833433568, 0)
  1046. TextButton_29.Size = UDim2.new(1, 0, 0.166859761, 0)
  1047. TextButton_29.Font = Enum.Font.SourceSansLight
  1048. TextButton_29.Text = "Boss Room"
  1049. TextButton_29.TextColor3 = Color3.new(1, 1, 1)
  1050. TextButton_29.TextScaled = true
  1051. TextButton_29.TextSize = 16
  1052. TextButton_29.TextWrapped = true
  1053.  
  1054. TextLabel_6.Parent = Frame3
  1055. TextLabel_6.BackgroundColor3 = Color3.new(1, 0, 0)
  1056. TextLabel_6.BorderSizePixel = 0
  1057. TextLabel_6.Position = UDim2.new(0, 0, 1, 0)
  1058. TextLabel_6.Size = UDim2.new(1, 0, 0.100000001, 0)
  1059. TextLabel_6.ZIndex = 5
  1060. TextLabel_6.Font = Enum.Font.SourceSans
  1061. TextLabel_6.Text = ""
  1062. TextLabel_6.TextColor3 = Color3.new(0, 0, 0)
  1063. TextLabel_6.TextSize = 14
  1064.  
  1065. Frame4.Name = "Frame4"
  1066. Frame4.Parent = ScreenGui
  1067. Frame4.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  1068. Frame4.BorderSizePixel = 0
  1069. Frame4.Position = UDim2.new(0.403284699, 0, 0.0656063631, 0)
  1070. Frame4.Size = UDim2.new(0.0994525552, 0, 0.0337972157, 0)
  1071. Frame4.Active = true
  1072. Frame4.Draggable = true
  1073.  
  1074. TextButton_30.Parent = Frame4
  1075. TextButton_30.BackgroundColor3 = Color3.new(1, 1, 1)
  1076. TextButton_30.BackgroundTransparency = 1
  1077. TextButton_30.BorderSizePixel = 0
  1078. TextButton_30.Position = UDim2.new(0.854838729, 0, 0, 0)
  1079. TextButton_30.Size = UDim2.new(0.145161286, 0, 1, 0)
  1080. TextButton_30.Font = Enum.Font.SourceSansLight
  1081. TextButton_30.Text = "-"
  1082. TextButton_30.TextColor3 = Color3.new(1, 1, 1)
  1083. TextButton_30.TextScaled = true
  1084. TextButton_30.TextSize = 14
  1085. TextButton_30.TextWrapped = true
  1086.  
  1087. TextLabel_7.Parent = Frame4
  1088. TextLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1089. TextLabel_7.BackgroundTransparency = 1
  1090. TextLabel_7.Position = UDim2.new(-3.53902578e-08, 0, 0, 0)
  1091. TextLabel_7.Size = UDim2.new(1, 0, 1, 0)
  1092. TextLabel_7.Font = Enum.Font.SourceSansLight
  1093. TextLabel_7.Text = "Credits"
  1094. TextLabel_7.TextColor3 = Color3.new(1, 1, 1)
  1095. TextLabel_7.TextScaled = true
  1096. TextLabel_7.TextSize = 14
  1097. TextLabel_7.TextWrapped = true
  1098.  
  1099. Frame_5.Parent = Frame4
  1100. Frame_5.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  1101. Frame_5.BorderColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  1102. Frame_5.BorderSizePixel = 0
  1103. Frame_5.Position = UDim2.new(0, 0, 1, 0)
  1104. Frame_5.Size = UDim2.new(0.99999994, 0, 3.98165965, 0)
  1105.  
  1106. TextLabel_8.Parent = Frame_5
  1107. TextLabel_8.BackgroundColor3 = Color3.new(1, 1, 1)
  1108. TextLabel_8.BackgroundTransparency = 1
  1109. TextLabel_8.Size = UDim2.new(0.99999994, 0, 0.234902367, 0)
  1110. TextLabel_8.Font = Enum.Font.SourceSansLight
  1111. TextLabel_8.Text = "Gui: Flawm3ng0"
  1112. TextLabel_8.TextColor3 = Color3.new(1, 1, 1)
  1113. TextLabel_8.TextScaled = true
  1114. TextLabel_8.TextSize = 14
  1115. TextLabel_8.TextWrapped = true
  1116.  
  1117. TextLabel_9.Parent = Frame_5
  1118. TextLabel_9.BackgroundColor3 = Color3.new(1, 1, 1)
  1119. TextLabel_9.BackgroundTransparency = 1
  1120. TextLabel_9.Position = UDim2.new(0, 0, 0.2260364, 0)
  1121. TextLabel_9.Size = UDim2.new(0.99999994, 0, 0.755119443, 0)
  1122. TextLabel_9.Font = Enum.Font.SourceSansLight
  1123. TextLabel_9.Text = "Scripts: Hamsta Gang, doggyshot123, Chrrxs, LeviTheOtaku, Flawm3ng0"
  1124. TextLabel_9.TextColor3 = Color3.new(1, 1, 1)
  1125. TextLabel_9.TextScaled = true
  1126. TextLabel_9.TextSize = 14
  1127. TextLabel_9.TextWrapped = true
  1128. TextLabel_9.TextYAlignment = Enum.TextYAlignment.Top
  1129.  
  1130. TextLabel_10.Parent = Frame4
  1131. TextLabel_10.BackgroundColor3 = Color3.new(1, 0, 0)
  1132. TextLabel_10.BorderSizePixel = 0
  1133. TextLabel_10.Position = UDim2.new(0, 0, 1, 0)
  1134. TextLabel_10.Size = UDim2.new(1, 0, 0.100000001, 0)
  1135. TextLabel_10.ZIndex = 5
  1136. TextLabel_10.Font = Enum.Font.SourceSans
  1137. TextLabel_10.Text = ""
  1138. TextLabel_10.TextColor3 = Color3.new(0, 0, 0)
  1139. TextLabel_10.TextSize = 14
  1140.  
  1141. --[[
  1142. Scripts:
  1143. --]]
  1144.  
  1145. local function DAUB_fake_script() -- TextButton.LocalScript
  1146. local script = Instance.new('LocalScript', TextButton)
  1147.  
  1148. script.Parent.MouseButton1Click:Connect(function()
  1149. if script.Parent.Text == "-" then
  1150. script.Parent.Text = "+"
  1151. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,0, 0),"In","Quint",0.5)
  1152. elseif
  1153. script.Parent.Text == "+" then
  1154. script.Parent.Text = "-"
  1155. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,6.15, 0),"Out","Quint",0.5)
  1156. end
  1157. end)
  1158. end
  1159. coroutine.wrap(DAUB_fake_script)()
  1160. local function MOBT_fake_script() -- TextButton_2.LocalScript
  1161. local script = Instance.new('LocalScript', TextButton_2)
  1162.  
  1163. script.Parent.MouseButton1Click:Connect(function()
  1164.  
  1165. local Target = game:GetService("ReplicatedStorage").RemoteEvents.Cattery;
  1166. Target:FireServer();
  1167.  
  1168. end)
  1169. end
  1170. coroutine.wrap(MOBT_fake_script)()
  1171. local function UTMXHAV_fake_script() -- TextButton_3.LocalScript
  1172. local script = Instance.new('LocalScript', TextButton_3)
  1173.  
  1174. script.Parent.MouseButton1Click:Connect(function()
  1175.  
  1176. while wait() do
  1177. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  1178. if v:IsA("Tool") then
  1179. v.CanBeDropped = true
  1180. end
  1181. end
  1182. end
  1183.  
  1184. end)
  1185. end
  1186. coroutine.wrap(UTMXHAV_fake_script)()
  1187. local function HKCZUDL_fake_script() -- TextButton_4.LocalScript
  1188. local script = Instance.new('LocalScript', TextButton_4)
  1189.  
  1190. script.Parent.MouseButton1Click:Connect(function()
  1191.  
  1192. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1193.  
  1194. game:GetService("ReplicatedStorage").RemoteEvents.CurePlayer:FireServer(v)
  1195. game:GetService("ReplicatedStorage").RemoteEvents.HealPlayer:FireServer(v)
  1196.  
  1197. end
  1198.  
  1199. end)
  1200. end
  1201. coroutine.wrap(HKCZUDL_fake_script)()
  1202. local function NBFTUGO_fake_script() -- TextButton_5.LocalScript
  1203. local script = Instance.new('LocalScript', TextButton_5)
  1204.  
  1205. script.Parent.MouseButton1Click:Connect(function()
  1206.  
  1207. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  1208. if v:IsA("Tool") then
  1209. v:Destroy()
  1210. end
  1211. end
  1212.  
  1213. end)
  1214. end
  1215. coroutine.wrap(NBFTUGO_fake_script)()
  1216. local function ZRLV_fake_script() -- TextButton_6.LocalScript
  1217. local script = Instance.new('LocalScript', TextButton_6)
  1218.  
  1219. script.Parent.MouseButton1Click:Connect(function()
  1220.  
  1221. for i = 1, 200 do
  1222.  
  1223. local A_1 = "Cat"
  1224. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Energy
  1225. Event:FireServer(A_1)
  1226.  
  1227. end
  1228.  
  1229. end)
  1230. end
  1231. coroutine.wrap(ZRLV_fake_script)()
  1232. local function BAMBFIU_fake_script() -- TextButton_7.LocalScript
  1233. local script = Instance.new('LocalScript', TextButton_7)
  1234.  
  1235. script.Parent.MouseButton1Click:Connect(function()
  1236. game.ReplicatedStorage.RemoteEvents.BuyItem:FireServer("Pan", 0)
  1237.  
  1238. end)
  1239. end
  1240. coroutine.wrap(BAMBFIU_fake_script)()
  1241. local function DHQO_fake_script() -- TextButton_8.LocalScript
  1242. local script = Instance.new('LocalScript', TextButton_8)
  1243.  
  1244. script.Parent.MouseButton1Click:Connect(function()
  1245. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  1246.  
  1247. for i = 1, 50 do
  1248.  
  1249. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,10)
  1250. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  1251. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,9)
  1252. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  1253.  
  1254. end
  1255.  
  1256. end
  1257. end)
  1258. end
  1259. coroutine.wrap(DHQO_fake_script)()
  1260. local function FJYXQET_fake_script() -- TextButton_9.LocalScript
  1261. local script = Instance.new('LocalScript', TextButton_9)
  1262.  
  1263. script.Parent.MouseButton1Click:Connect(function()
  1264. if workspace:findFirstChild("CodeNote") then
  1265. game.ReplicatedStorage.RemoteEvents.Safe:FireServer(workspace.CodeNote.SurfaceGui.TextLabel.Text)
  1266. end
  1267. end)
  1268. end
  1269. coroutine.wrap(FJYXQET_fake_script)()
  1270. local function JAHBO_fake_script() -- TextButton_10.LocalScript
  1271. local script = Instance.new('LocalScript', TextButton_10)
  1272.  
  1273. script.Parent.MouseButton1Click:Connect(function()
  1274. if script.Parent.Text == "-" then
  1275. script.Parent.Text = "+"
  1276. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,0, 0),"In","Quint",0.5)
  1277. elseif
  1278. script.Parent.Text == "+" then
  1279. script.Parent.Text = "-"
  1280. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,8.35, 0),"Out","Quint",0.5)
  1281. end
  1282. end)
  1283. end
  1284. coroutine.wrap(JAHBO_fake_script)()
  1285. local function HHVFXU_fake_script() -- TextButton_11.LocalScript
  1286. local script = Instance.new('LocalScript', TextButton_11)
  1287.  
  1288. script.Parent.MouseButton1Click:Connect(function()
  1289.  
  1290. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")
  1291.  
  1292. end)
  1293. end
  1294. coroutine.wrap(HHVFXU_fake_script)()
  1295. local function AQTQ_fake_script() -- TextButton_12.LocalScript
  1296. local script = Instance.new('LocalScript', TextButton_12)
  1297.  
  1298. script.Parent.MouseButton1Click:Connect(function()
  1299.  
  1300. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Lollipop")
  1301.  
  1302. end)
  1303. end
  1304. coroutine.wrap(AQTQ_fake_script)()
  1305. local function BITO_fake_script() -- TextButton_13.LocalScript
  1306. local script = Instance.new('LocalScript', TextButton_13)
  1307.  
  1308. script.Parent.MouseButton1Click:Connect(function()
  1309.  
  1310. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Bat")
  1311. end)
  1312. end
  1313. coroutine.wrap(BITO_fake_script)()
  1314. local function EAAZD_fake_script() -- TextButton_14.LocalScript
  1315. local script = Instance.new('LocalScript', TextButton_14)
  1316.  
  1317. script.Parent.MouseButton1Click:Connect(function()
  1318.  
  1319. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  1320. end)
  1321. end
  1322. coroutine.wrap(EAAZD_fake_script)()
  1323. local function GDZI_fake_script() -- TextButton_15.LocalScript
  1324. local script = Instance.new('LocalScript', TextButton_15)
  1325.  
  1326. script.Parent.MouseButton1Click:Connect(function()
  1327.  
  1328. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("TeddyBloxpin")
  1329.  
  1330. end)
  1331. end
  1332. coroutine.wrap(GDZI_fake_script)()
  1333. local function BNIP_fake_script() -- TextButton_16.LocalScript
  1334. local script = Instance.new('LocalScript', TextButton_16)
  1335.  
  1336. script.Parent.MouseButton1Click:Connect(function()
  1337.  
  1338. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("LinkedSword")
  1339.  
  1340. end)
  1341. end
  1342. coroutine.wrap(BNIP_fake_script)()
  1343. local function XFSWFCQ_fake_script() -- TextButton_17.LocalScript
  1344. local script = Instance.new('LocalScript', TextButton_17)
  1345.  
  1346. script.Parent.MouseButton1Click:Connect(function()
  1347.  
  1348. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Plank")
  1349.  
  1350. end)
  1351. end
  1352. coroutine.wrap(XFSWFCQ_fake_script)()
  1353. local function BMSKDS_fake_script() -- TextButton_18.LocalScript
  1354. local script = Instance.new('LocalScript', TextButton_18)
  1355.  
  1356. script.Parent.MouseButton1Click:Connect(function()
  1357.  
  1358. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")
  1359.  
  1360. end)
  1361. end
  1362. coroutine.wrap(BMSKDS_fake_script)()
  1363. local function FCFIRS_fake_script() -- TextButton_19.LocalScript
  1364. local script = Instance.new('LocalScript', TextButton_19)
  1365.  
  1366. script.Parent.MouseButton1Click:Connect(function()
  1367.  
  1368. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza")
  1369.  
  1370. end)
  1371. end
  1372. coroutine.wrap(FCFIRS_fake_script)()
  1373. local function GKNDGG_fake_script() -- TextButton_20.LocalScript
  1374. local script = Instance.new('LocalScript', TextButton_20)
  1375.  
  1376. script.Parent.MouseButton1Click:Connect(function()
  1377.  
  1378. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cure")
  1379.  
  1380. end)
  1381. end
  1382. coroutine.wrap(GKNDGG_fake_script)()
  1383. local function GLJGLAN_fake_script() -- TextButton_21.LocalScript
  1384. local script = Instance.new('LocalScript', TextButton_21)
  1385.  
  1386. script.Parent.MouseButton1Click:Connect(function()
  1387.  
  1388. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")
  1389.  
  1390. end)
  1391. end
  1392. coroutine.wrap(GLJGLAN_fake_script)()
  1393. local function AECM_fake_script() -- TextButton_22.LocalScript
  1394. local script = Instance.new('LocalScript', TextButton_22)
  1395.  
  1396. script.Parent.MouseButton1Click:Connect(function()
  1397.  
  1398. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  1399. end)
  1400. end
  1401. coroutine.wrap(AECM_fake_script)()
  1402. local function TONK_fake_script() -- TextButton_23.LocalScript
  1403. local script = Instance.new('LocalScript', TextButton_23)
  1404.  
  1405. script.Parent.MouseButton1Click:Connect(function()
  1406. if script.Parent.Text == "-" then
  1407. script.Parent.Text = "+"
  1408. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,0, 0),"In","Quint",0.5)
  1409. elseif
  1410. script.Parent.Text == "+" then
  1411. script.Parent.Text = "-"
  1412. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,4.777, 0),"Out","Quint",0.5)
  1413. end
  1414. end)
  1415. end
  1416. coroutine.wrap(TONK_fake_script)()
  1417. local function JAJXLG_fake_script() -- TextButton_24.LocalScript
  1418. local script = Instance.new('LocalScript', TextButton_24)
  1419.  
  1420. script.Parent.MouseButton1Click:Connect(function()
  1421.  
  1422. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-36, 3, -200)
  1423. end)
  1424. end
  1425. coroutine.wrap(JAJXLG_fake_script)()
  1426. local function YOMAEG_fake_script() -- TextButton_25.LocalScript
  1427. local script = Instance.new('LocalScript', TextButton_25)
  1428.  
  1429. script.Parent.MouseButton1Click:Connect(function()
  1430.  
  1431. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(71, -15, -163)
  1432. end)
  1433. end
  1434. coroutine.wrap(YOMAEG_fake_script)()
  1435. local function JEQAJJV_fake_script() -- TextButton_26.LocalScript
  1436. local script = Instance.new('LocalScript', TextButton_26)
  1437.  
  1438. script.Parent.MouseButton1Click:Connect(function()
  1439.  
  1440. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16, 35, -220)
  1441. end)
  1442. end
  1443. coroutine.wrap(JEQAJJV_fake_script)()
  1444. local function BLZL_fake_script() -- TextButton_27.LocalScript
  1445. local script = Instance.new('LocalScript', TextButton_27)
  1446.  
  1447. script.Parent.MouseButton1Click:Connect(function()
  1448.  
  1449. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-422, 3, -121)
  1450. end)
  1451. end
  1452. coroutine.wrap(BLZL_fake_script)()
  1453. local function MOUAU_fake_script() -- TextButton_28.LocalScript
  1454. local script = Instance.new('LocalScript', TextButton_28)
  1455.  
  1456. script.Parent.MouseButton1Click:Connect(function()
  1457.  
  1458. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(129, 3, -125)
  1459. end)
  1460. end
  1461. coroutine.wrap(MOUAU_fake_script)()
  1462. local function OVDB_fake_script() -- TextButton_29.LocalScript
  1463. local script = Instance.new('LocalScript', TextButton_29)
  1464.  
  1465. script.Parent.MouseButton1Click:Connect(function()
  1466.  
  1467. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-39, -287, -1480)
  1468. end)
  1469. end
  1470. coroutine.wrap(OVDB_fake_script)()
  1471. local function FKRBDAC_fake_script() -- TextButton_30.LocalScript
  1472. local script = Instance.new('LocalScript', TextButton_30)
  1473.  
  1474. script.Parent.MouseButton1Click:Connect(function()
  1475. if script.Parent.Text == "-" then
  1476. script.Parent.Text = "+"
  1477. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,0, 0),"In","Quint",0.5)
  1478. elseif
  1479. script.Parent.Text == "+" then
  1480. script.Parent.Text = "-"
  1481. script.Parent.Parent.Frame:TweenSize(UDim2.new(1, 0,3.982, 0),"Out","Quint",0.5)
  1482. end
  1483. end)
  1484. end
  1485. coroutine.wrap(FKRBDAC_fake_script)()
Add Comment
Please, Sign In to add comment