Advertisement
Guest User

Untitled

a guest
Jun 10th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 75.68 KB | None | 0 0
  1.  
  2. wait(0.0000677)
  3.  
  4. local child = game.Players.LocalPlayer
  5. local confirm = game.Workspace.Ammunation:FindFirstChild("Model").DESK.TOUCH.Script.DESKGunStore.Shop.Validate
  6. local gui = game.Workspace.Ammunation:FindFirstChild("Model").DESK.TOUCH.Script.DESKGunStore.Shop
  7. --[[
  8. Scripting, GUI and tweening by chubs#8765
  9. Functions by Engineer#4999
  10. Networking by Lord_Piperr#8768
  11.  
  12. --]]
  13.  
  14. -- Objects
  15.  
  16. local Azimuth = Instance.new("ScreenGui")
  17. local Main = Instance.new("Frame")
  18. local Title = Instance.new("TextLabel")
  19. local Line = Instance.new("Frame")
  20. local Home = Instance.new("TextButton")
  21. local Circle = Instance.new("ImageLabel")
  22. local Spawning = Instance.new("TextButton")
  23. local LocalPlayer = Instance.new("TextButton")
  24. local Credits = Instance.new("TextButton")
  25. local HomeFrame = Instance.new("Frame")
  26. local Info = Instance.new("TextLabel")
  27. local Name = Instance.new("TextLabel")
  28. local Info_2 = Instance.new("TextLabel")
  29. local Status = Instance.new("TextLabel")
  30. local Exit = Instance.new("TextButton")
  31. local Minimize = Instance.new("TextButton")
  32. local SpawningFrame = Instance.new("Frame")
  33. local ItemBox = Instance.new("TextBox")
  34. local ItemScroll = Instance.new("ScrollingFrame")
  35. local AKBLADE = Instance.new("TextButton")
  36. local AK47U = Instance.new("TextButton")
  37. local BALACLAVA = Instance.new("TextButton")
  38. local BAT = Instance.new("TextButton")
  39. local BATON = Instance.new("TextButton")
  40. local BATTERINGRAM = Instance.new("TextButton")
  41. local BLACKBANDANA = Instance.new("TextButton")
  42. local BLUEBANDANA = Instance.new("TextButton")
  43. local BURRITO = Instance.new("TextButton")
  44. local CHERRYSPICE = Instance.new("TextButton")
  45. local CHIPS = Instance.new("TextButton")
  46. local DEAGLE = Instance.new("TextButton")
  47. local GDEAGLE = Instance.new("TextButton")
  48. local GLOCK = Instance.new("TextButton")
  49. local GLOCKBEAM = Instance.new("TextButton")
  50. local GOLDAK = Instance.new("TextButton")
  51. local GOLDROSSI = Instance.new("TextButton")
  52. local HAMMER = Instance.new("TextButton")
  53. local KNIFE = Instance.new("TextButton")
  54. local LUNCH = Instance.new("TextButton")
  55. local M1911 = Instance.new("TextButton")
  56. local M1911S = Instance.new("TextButton")
  57. local MAC10 = Instance.new("TextButton")
  58. local MP5 = Instance.new("TextButton")
  59. local PAINKILLERS = Instance.new("TextButton")
  60. local PDGLOCK = Instance.new("TextButton")
  61. local PURPLEGUN = Instance.new("TextButton")
  62. local REDBANDANA = Instance.new("TextButton")
  63. local REMINGTON = Instance.new("TextButton")
  64. local ROOTBEER = Instance.new("TextButton")
  65. local ROSSI = Instance.new("TextButton")
  66. local RUGER = Instance.new("TextButton")
  67. local SPRAYPAINT = Instance.new("TextButton")
  68. local TASER = Instance.new("TextButton")
  69. local TEC9 = Instance.new("TextButton")
  70. local USP45 = Instance.new("TextButton")
  71. local ItemAmount = Instance.new("TextBox")
  72. local LocalPlayerFrame = Instance.new("Frame")
  73. local Fly = Instance.new("TextButton")
  74. local Btools = Instance.new("TextButton")
  75. local Noclip = Instance.new("TextButton")
  76. local CreditsFrame = Instance.new("Frame")
  77. local Info_3 = Instance.new("TextLabel")
  78. local Info_4 = Instance.new("TextLabel")
  79. local Info_5 = Instance.new("TextLabel")
  80. local Info_6 = Instance.new("TextLabel")
  81. local Login = Instance.new("Frame")
  82. local Title_2 = Instance.new("TextLabel")
  83. local Line_2 = Instance.new("Frame")
  84. local Username = Instance.new("TextBox")
  85. local Password = Instance.new("TextBox")
  86. local HWID = Instance.new("TextBox")
  87. local LoginButton = Instance.new("TextButton")
  88. local Info_7 = Instance.new("TextLabel")
  89. local Tries = Instance.new("TextLabel")
  90. local God1 = Instance.new("TextButton")
  91.  
  92. -- Globals
  93.  
  94. Patched = false
  95. godon = false
  96. noclipon = false
  97. btoolson = false
  98. flyon = false
  99.  
  100. -- Functions
  101.  
  102. local Mouse = game.Players.LocalPlayer:GetMouse()
  103.  
  104. function CircleClick(Button, X, Y)
  105. coroutine.resume(coroutine.create(function()
  106.  
  107. Button.ClipsDescendants = true
  108.  
  109. local Circle = Circle:Clone()
  110. Circle.Parent = Button
  111. local NewX = X - Circle.AbsolutePosition.X
  112. local NewY = Y - Circle.AbsolutePosition.Y
  113. Circle.Position = UDim2.new(0, NewX, 0, NewY)
  114.  
  115. local Size = 0
  116. if Button.AbsoluteSize.X > Button.AbsoluteSize.Y then
  117. Size = Button.AbsoluteSize.X*1.5
  118. elseif Button.AbsoluteSize.X < Button.AbsoluteSize.Y then
  119. Size = Button.AbsoluteSize.Y*1.5
  120. elseif Button.AbsoluteSize.X == Button.AbsoluteSize.Y then
  121. Size = Button.AbsoluteSize.X*1.5
  122. end
  123.  
  124. local Time = 0.5
  125. Circle:TweenSizeAndPosition(UDim2.new(0, Size, 0, Size), UDim2.new(0.5, -Size/2, 0.5, -Size/2), "Out", "Quad", Time, false, nil)
  126. for i=1,10 do
  127. Circle.ImageTransparency = Circle.ImageTransparency + 0.01
  128. wait(Time/10)
  129. end
  130. Circle:Destroy()
  131.  
  132. end))
  133. end
  134.  
  135. local TweenService = game:GetService("TweenService")
  136.  
  137. -- Properties
  138.  
  139. Azimuth.Name = "Azimuth"
  140. Azimuth.Parent = game.CoreGui
  141. Azimuth.ResetOnSpawn = false
  142.  
  143. Main.Name = "Main"
  144. Main.Parent = Azimuth
  145. Main.Active = true
  146. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  147. Main.BackgroundTransparency = 0.69999998807907
  148. Main.BorderSizePixel = 0
  149. Main.Position = UDim2.new(0.362292022, 0, 0.369198322, 0)
  150. Main.Selectable = true
  151. Main.Size = UDim2.new(0, 448, 0, 248)
  152. Main.Draggable = true
  153.  
  154. Title.Name = "Title"
  155. Title.Parent = Main
  156. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  157. Title.BackgroundTransparency = 1
  158. Title.Position = UDim2.new(0.300443441, 0, 0.0403225794, 0)
  159. Title.Size = UDim2.new(0, 180, 0, 19)
  160. Title.Font = Enum.Font.SourceSansLight
  161. Title.Text = "Azimuth"
  162. Title.TextColor3 = Color3.new(1, 1, 1)
  163. Title.TextSize = 23
  164.  
  165. Line.Name = "Line"
  166. Line.Parent = Main
  167. Line.BackgroundColor3 = Color3.new(1, 1, 1)
  168. Line.BorderSizePixel = 0
  169. Line.Position = UDim2.new(0.015625, 0, 0.274193555, 0)
  170. Line.Size = UDim2.new(0, 435, 0, 2)
  171.  
  172. Home.Name = "Home"
  173. Home.Parent = Main
  174. Home.BackgroundColor3 = Color3.new(0, 0, 0)
  175. Home.BackgroundTransparency = 0.69999998807907
  176. Home.BorderSizePixel = 0
  177. Home.Position = UDim2.new(0.015491426, 0, 0.149193525, 0)
  178. Home.Size = UDim2.new(0, 104, 0, 25)
  179. Home.AutoButtonColor = false
  180. Home.Font = Enum.Font.SourceSansLight
  181. Home.Text = "Home"
  182. Home.TextColor3 = Color3.new(1, 1, 1)
  183. Home.TextSize = 15
  184. Home.MouseEnter:Connect(function()
  185. local but = Home
  186. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  187.  
  188. local gol = {}
  189. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  190.  
  191. local twenfo = TweenInfo.new(.4)
  192. local twen = TweenService:Create(but,twenfo,gol,true)
  193. twen:Play()
  194. end)
  195. Home.MouseLeave:Connect(function()
  196.  
  197. local but = Home
  198. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  199.  
  200. local gol = {}
  201. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  202.  
  203. local twenfo = TweenInfo.new(.4)
  204. local twen = TweenService:Create(but,twenfo,gol,true)
  205. twen:Play()
  206. end)
  207.  
  208. Circle.Name = "Circle"
  209. Circle.Parent = Main
  210. Circle.BackgroundColor3 = Color3.new(1, 1, 1)
  211. Circle.BackgroundTransparency = 1
  212. Circle.ZIndex = 10
  213. Circle.Image = "rbxassetid://266543268"
  214. Circle.ImageColor3 = Color3.new(0, 0, 0)
  215. Circle.ImageTransparency = 0.89999997615814
  216.  
  217. Spawning.Name = "Spawning"
  218. Spawning.Parent = Main
  219. Spawning.BackgroundColor3 = Color3.new(0, 0, 0)
  220. Spawning.BackgroundTransparency = 0.69999998807907
  221. Spawning.BorderSizePixel = 0
  222. Spawning.Position = UDim2.new(0.261027068, 0, 0.14919354, 0)
  223. Spawning.Size = UDim2.new(0, 104, 0, 25)
  224. Spawning.AutoButtonColor = false
  225. Spawning.Font = Enum.Font.SourceSansLight
  226. Spawning.Text = "Spawning"
  227. Spawning.TextColor3 = Color3.new(1, 1, 1)
  228. Spawning.TextSize = 15
  229. Spawning.MouseEnter:Connect(function()
  230. local but = Spawning
  231. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  232.  
  233. local gol = {}
  234. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  235.  
  236. local twenfo = TweenInfo.new(.4)
  237. local twen = TweenService:Create(but,twenfo,gol,true)
  238. twen:Play()
  239. end)
  240. Spawning.MouseLeave:Connect(function()
  241.  
  242. local but = Spawning
  243. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  244.  
  245. local gol = {}
  246. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  247.  
  248. local twenfo = TweenInfo.new(.4)
  249. local twen = TweenService:Create(but,twenfo,gol,true)
  250. twen:Play()
  251. end)
  252.  
  253. LocalPlayer.Name = "LocalPlayer"
  254. LocalPlayer.Parent = Main
  255. LocalPlayer.BackgroundColor3 = Color3.new(0, 0, 0)
  256. LocalPlayer.BackgroundTransparency = 0.69999998807907
  257. LocalPlayer.BorderSizePixel = 0
  258. LocalPlayer.Position = UDim2.new(0.508794904, 0, 0.149193555, 0)
  259. LocalPlayer.Size = UDim2.new(0, 104, 0, 25)
  260. LocalPlayer.AutoButtonColor = false
  261. LocalPlayer.Font = Enum.Font.SourceSansLight
  262. LocalPlayer.Text = "LocalPlayer"
  263. LocalPlayer.TextColor3 = Color3.new(1, 1, 1)
  264. LocalPlayer.TextSize = 15
  265. LocalPlayer.MouseEnter:Connect(function()
  266. local but = LocalPlayer
  267. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  268.  
  269. local gol = {}
  270. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  271.  
  272. local twenfo = TweenInfo.new(.4)
  273. local twen = TweenService:Create(but,twenfo,gol,true)
  274. twen:Play()
  275. end)
  276. LocalPlayer.MouseLeave:Connect(function()
  277.  
  278. local but = LocalPlayer
  279. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  280.  
  281. local gol = {}
  282. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  283.  
  284. local twenfo = TweenInfo.new(.4)
  285. local twen = TweenService:Create(but,twenfo,gol,true)
  286. twen:Play()
  287. end)
  288.  
  289. Credits.Name = "Credits"
  290. Credits.Parent = Main
  291. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  292. Credits.BackgroundTransparency = 0.69999998807907
  293. Credits.BorderSizePixel = 0
  294. Credits.Position = UDim2.new(0.754330635, 0, 0.14919354, 0)
  295. Credits.Size = UDim2.new(0, 104, 0, 25)
  296. Credits.AutoButtonColor = false
  297. Credits.Font = Enum.Font.SourceSansLight
  298. Credits.Text = "Credits"
  299. Credits.TextColor3 = Color3.new(1, 1, 1)
  300. Credits.TextSize = 15
  301. Credits.MouseEnter:Connect(function()
  302. local but = Credits
  303. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  304.  
  305. local gol = {}
  306. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  307.  
  308. local twenfo = TweenInfo.new(.4)
  309. local twen = TweenService:Create(but,twenfo,gol,true)
  310. twen:Play()
  311. end)
  312. Credits.MouseLeave:Connect(function()
  313.  
  314. local but = Credits
  315. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  316.  
  317. local gol = {}
  318. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  319.  
  320. local twenfo = TweenInfo.new(.4)
  321. local twen = TweenService:Create(but,twenfo,gol,true)
  322. twen:Play()
  323. end)
  324.  
  325. HomeFrame.Name = "HomeFrame"
  326. HomeFrame.Parent = Main
  327. HomeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  328. HomeFrame.BackgroundTransparency = 0.80000001192093
  329. HomeFrame.BorderSizePixel = 0
  330. HomeFrame.Position = UDim2.new(0.015625, 0, 0.29838711, 0)
  331. HomeFrame.Size = UDim2.new(0, 435, 0, 168)
  332.  
  333. Info.Name = "Info"
  334. Info.Parent = HomeFrame
  335. Info.BackgroundColor3 = Color3.new(1, 1, 1)
  336. Info.BackgroundTransparency = 1
  337. Info.Position = UDim2.new(0.0344827585, 0, 0.0416666716, 0)
  338. Info.Size = UDim2.new(0, 74, 0, 12)
  339. Info.Font = Enum.Font.SourceSansLight
  340. Info.Text = "Welcome,"
  341. Info.TextColor3 = Color3.new(1, 1, 1)
  342. Info.TextSize = 28
  343.  
  344. Name.Name = "Name"
  345. Name.Parent = HomeFrame
  346. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  347. Name.BackgroundTransparency = 1
  348. Name.Position = UDim2.new(0.239080459, 0, 0.0238095243, 0)
  349. Name.Size = UDim2.new(0, 325, 0, 18)
  350. Name.Font = Enum.Font.SourceSansItalic
  351. Name.Text = "name!"
  352. Name.TextColor3 = Color3.new(1, 1, 1)
  353. Name.TextSize = 28
  354. Name.TextXAlignment = Enum.TextXAlignment.Left
  355. Name.Text = game.Players.LocalPlayer.Name.."!"
  356.  
  357. Info_2.Name = "Info"
  358. Info_2.Parent = HomeFrame
  359. Info_2.BackgroundColor3 = Color3.new(1, 1, 1)
  360. Info_2.BackgroundTransparency = 1
  361. Info_2.Position = UDim2.new(0.016091954, 0, 0.166666657, 0)
  362. Info_2.Size = UDim2.new(0, 184, 0, 28)
  363. Info_2.Font = Enum.Font.SourceSansLight
  364. Info_2.Text = "The GUI is currently"
  365. Info_2.TextColor3 = Color3.new(1, 1, 1)
  366. Info_2.TextSize = 28
  367.  
  368. Status.Name = "Status"
  369. Status.Parent = HomeFrame
  370. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  371. Status.BackgroundTransparency = 1
  372. Status.Position = UDim2.new(0.44600001, 0, 0.166999996, 0)
  373. Status.Size = UDim2.new(0, 184, 0, 28)
  374. Status.Font = Enum.Font.SourceSansLight
  375. Status.Text = "Unpatched"
  376. Status.TextColor3 = Color3.new(0.294118, 0.686275, 0.294118)
  377. Status.TextSize = 28
  378. Status.TextXAlignment = Enum.TextXAlignment.Left
  379.  
  380. Exit.Name = "Exit"
  381. Exit.Parent = Main
  382. Exit.BackgroundColor3 = Color3.new(0, 0, 0)
  383. Exit.BackgroundTransparency = 0.69999998807907
  384. Exit.BorderSizePixel = 0
  385. Exit.Position = UDim2.new(0.90625, 0, 0.0282258056, 0)
  386. Exit.Size = UDim2.new(0, 36, 0, 25)
  387. Exit.AutoButtonColor = false
  388. Exit.Font = Enum.Font.SourceSansLight
  389. Exit.Text = "Exit"
  390. Exit.TextColor3 = Color3.new(1, 1, 1)
  391. Exit.TextSize = 15
  392. Exit.MouseEnter:Connect(function()
  393. local but = Exit
  394. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  395.  
  396. local gol = {}
  397. gol.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  398.  
  399. local twenfo = TweenInfo.new(.4)
  400. local twen = TweenService:Create(but,twenfo,gol,true)
  401. twen:Play()
  402. end)
  403. Exit.MouseLeave:Connect(function()
  404.  
  405. local but = Exit
  406. but.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  407.  
  408. local gol = {}
  409. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  410.  
  411. local twenfo = TweenInfo.new(.4)
  412. local twen = TweenService:Create(but,twenfo,gol,true)
  413. twen:Play()
  414. end)
  415.  
  416. Minimize.Name = "Minimize"
  417. Minimize.Parent = Main
  418. Minimize.BackgroundColor3 = Color3.new(0, 0, 0)
  419. Minimize.BackgroundTransparency = 0.69999998807907
  420. Minimize.BorderSizePixel = 0
  421. Minimize.Position = UDim2.new(0.754464269, 0, 0.0282258056, 0)
  422. Minimize.Size = UDim2.new(0, 61, 0, 25)
  423. Minimize.AutoButtonColor = false
  424. Minimize.Font = Enum.Font.SourceSansLight
  425. Minimize.Text = "Minimize"
  426. Minimize.TextColor3 = Color3.new(1, 1, 1)
  427. Minimize.TextSize = 15
  428. Minimize.MouseEnter:Connect(function()
  429. local but = Minimize
  430. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  431.  
  432. local gol = {}
  433. gol.BackgroundColor3 = Color3.fromRGB(255,255,127)
  434.  
  435. local twenfo = TweenInfo.new(.4)
  436. local twen = TweenService:Create(but,twenfo,gol,true)
  437. twen:Play()
  438. end)
  439. Minimize.MouseLeave:Connect(function()
  440.  
  441. local but = Minimize
  442. but.BackgroundColor3 = Color3.fromRGB(225,255,127)
  443.  
  444. local gol = {}
  445. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  446.  
  447. local twenfo = TweenInfo.new(.4)
  448. local twen = TweenService:Create(but,twenfo,gol,true)
  449. twen:Play()
  450. end)
  451.  
  452. SpawningFrame.Name = "SpawningFrame"
  453. SpawningFrame.Parent = Main
  454. SpawningFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  455. SpawningFrame.BackgroundTransparency = 0.69999998807907
  456. SpawningFrame.BorderSizePixel = 0
  457. SpawningFrame.Position = UDim2.new(0.015625, 0, 0.29838711, 0)
  458. SpawningFrame.Size = UDim2.new(0, 435, 0, 168)
  459. SpawningFrame.Visible = false
  460.  
  461. ItemBox.Name = "ItemBox"
  462. ItemBox.Parent = SpawningFrame
  463. ItemBox.BackgroundColor3 = Color3.new(0, 0, 0)
  464. ItemBox.BackgroundTransparency = 0.69999998807907
  465. ItemBox.BorderSizePixel = 0
  466. ItemBox.Position = UDim2.new(0.0229885057, 0, 0.0595238097, 0)
  467. ItemBox.Size = UDim2.new(0, 164, 0, 24)
  468. ItemBox.Font = Enum.Font.SourceSansItalic
  469. ItemBox.PlaceholderColor3 = Color3.new(0.607843, 0.607843, 0.607843)
  470. ItemBox.PlaceholderText = "Item name"
  471. ItemBox.Text = ""
  472. ItemBox.TextColor3 = Color3.new(1, 1, 1)
  473. ItemBox.TextSize = 17
  474. ItemBox.TextWrapped = true
  475. ItemBox.MouseEnter:Connect(function()
  476. local but = ItemBox
  477. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  478.  
  479. local gol = {}
  480. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  481.  
  482. local twenfo = TweenInfo.new(.4)
  483. local twen = TweenService:Create(but,twenfo,gol,true)
  484. twen:Play()
  485. end)
  486. ItemBox.MouseLeave:Connect(function()
  487.  
  488. local but = ItemBox
  489. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  490.  
  491. local gol = {}
  492. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  493.  
  494. local twenfo = TweenInfo.new(.4)
  495. local twen = TweenService:Create(but,twenfo,gol,true)
  496. twen:Play()
  497. end)
  498.  
  499. ItemScroll.Name = "ItemScroll"
  500. ItemScroll.Parent = SpawningFrame
  501. ItemScroll.BackgroundColor3 = Color3.new(0, 0, 0)
  502. ItemScroll.BackgroundTransparency = 0.60000002384186
  503. ItemScroll.BorderSizePixel = 0
  504. ItemScroll.Position = UDim2.new(0.0229885057, 0, 0.202380955, 0)
  505. ItemScroll.Size = UDim2.new(0, 164, 0, 125)
  506. ItemScroll.BottomImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
  507. ItemScroll.CanvasSize = UDim2.new(0, 0, 12, 0)
  508. ItemScroll.TopImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
  509.  
  510. AKBLADE.Name = "AK-BLADE"
  511. AKBLADE.Parent = ItemScroll
  512. AKBLADE.BackgroundColor3 = Color3.new(0, 0, 0)
  513. AKBLADE.BackgroundTransparency = 0.69999998807907
  514. AKBLADE.BorderSizePixel = 0
  515. AKBLADE.Position = UDim2.new(0, 0, 0.312000006, 0)
  516. AKBLADE.Size = UDim2.new(0, 172, 0, 27)
  517. AKBLADE.Font = Enum.Font.SourceSansLight
  518. AKBLADE.Text = "AK-BLADE"
  519. AKBLADE.TextColor3 = Color3.new(1, 1, 1)
  520. AKBLADE.TextSize = 20
  521. AKBLADE.TextWrapped = true
  522. AKBLADE.MouseEnter:Connect(function()
  523. local but = AKBLADE
  524. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  525.  
  526. local gol = {}
  527. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  528.  
  529. local twenfo = TweenInfo.new(.4)
  530. local twen = TweenService:Create(but,twenfo,gol,true)
  531. twen:Play()
  532. end)
  533. AKBLADE.MouseLeave:Connect(function()
  534.  
  535. local but = AKBLADE
  536. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  537.  
  538. local gol = {}
  539. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  540.  
  541. local twenfo = TweenInfo.new(.4)
  542. local twen = TweenService:Create(but,twenfo,gol,true)
  543. twen:Play()
  544. end)
  545.  
  546. AK47U.Name = "AK47U"
  547. AK47U.Parent = ItemScroll
  548. AK47U.BackgroundColor3 = Color3.new(0, 0, 0)
  549. AK47U.BackgroundTransparency = 0.69999998807907
  550. AK47U.BorderSizePixel = 0
  551. AK47U.Size = UDim2.new(0, 172, 0, 27)
  552. AK47U.Font = Enum.Font.SourceSansLight
  553. AK47U.Text = "AK74U"
  554. AK47U.TextColor3 = Color3.new(1, 1, 1)
  555. AK47U.TextSize = 20
  556. AK47U.TextWrapped = true
  557. AK47U.MouseEnter:Connect(function()
  558. local but = AK47U
  559. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  560.  
  561. local gol = {}
  562. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  563.  
  564. local twenfo = TweenInfo.new(.4)
  565. local twen = TweenService:Create(but,twenfo,gol,true)
  566. twen:Play()
  567. end)
  568. AK47U.MouseLeave:Connect(function()
  569.  
  570. local but = AK47U
  571. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  572.  
  573. local gol = {}
  574. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  575.  
  576. local twenfo = TweenInfo.new(.4)
  577. local twen = TweenService:Create(but,twenfo,gol,true)
  578. twen:Play()
  579. end)
  580.  
  581. BALACLAVA.Name = "BALACLAVA"
  582. BALACLAVA.Parent = ItemScroll
  583. BALACLAVA.BackgroundColor3 = Color3.new(0, 0, 0)
  584. BALACLAVA.BackgroundTransparency = 0.69999998807907
  585. BALACLAVA.BorderSizePixel = 0
  586. BALACLAVA.Position = UDim2.new(0, 0, 0.389999986, 0)
  587. BALACLAVA.Size = UDim2.new(0, 172, 0, 27)
  588. BALACLAVA.Font = Enum.Font.SourceSansLight
  589. BALACLAVA.Text = "BALACLAVA"
  590. BALACLAVA.TextColor3 = Color3.new(1, 1, 1)
  591. BALACLAVA.TextSize = 20
  592. BALACLAVA.TextWrapped = true
  593. BALACLAVA.MouseEnter:Connect(function()
  594. local but = BALACLAVA
  595. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  596.  
  597. local gol = {}
  598. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  599.  
  600. local twenfo = TweenInfo.new(.4)
  601. local twen = TweenService:Create(but,twenfo,gol,true)
  602. twen:Play()
  603. end)
  604. BALACLAVA.MouseLeave:Connect(function()
  605.  
  606. local but = BALACLAVA
  607. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  608.  
  609. local gol = {}
  610. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  611.  
  612. local twenfo = TweenInfo.new(.4)
  613. local twen = TweenService:Create(but,twenfo,gol,true)
  614. twen:Play()
  615. end)
  616.  
  617. BAT.Name = "BAT"
  618. BAT.Parent = ItemScroll
  619. BAT.BackgroundColor3 = Color3.new(0, 0, 0)
  620. BAT.BackgroundTransparency = 0.69999998807907
  621. BAT.BorderSizePixel = 0
  622. BAT.Position = UDim2.new(0, 0, 0.0909999982, 0)
  623. BAT.Size = UDim2.new(0, 172, 0, 27)
  624. BAT.Font = Enum.Font.SourceSansLight
  625. BAT.Text = "BAT"
  626. BAT.TextColor3 = Color3.new(1, 1, 1)
  627. BAT.TextSize = 20
  628. BAT.TextWrapped = true
  629. BAT.MouseEnter:Connect(function()
  630. local but = BAT
  631. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  632.  
  633. local gol = {}
  634. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  635.  
  636. local twenfo = TweenInfo.new(.4)
  637. local twen = TweenService:Create(but,twenfo,gol,true)
  638. twen:Play()
  639. end)
  640. BAT.MouseLeave:Connect(function()
  641.  
  642. local but = BAT
  643. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  644.  
  645. local gol = {}
  646. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  647.  
  648. local twenfo = TweenInfo.new(.4)
  649. local twen = TweenService:Create(but,twenfo,gol,true)
  650. twen:Play()
  651. end)
  652.  
  653. BATON.Name = "BATON"
  654. BATON.Parent = ItemScroll
  655. BATON.BackgroundColor3 = Color3.new(0, 0, 0)
  656. BATON.BackgroundTransparency = 0.69999998807907
  657. BATON.BorderSizePixel = 0
  658. BATON.Position = UDim2.new(0, 0, 0.143000007, 0)
  659. BATON.Size = UDim2.new(0, 172, 0, 27)
  660. BATON.Font = Enum.Font.SourceSansLight
  661. BATON.Text = "BATON"
  662. BATON.TextColor3 = Color3.new(1, 1, 1)
  663. BATON.TextSize = 20
  664. BATON.TextWrapped = true
  665. BATON.MouseEnter:Connect(function()
  666. local but = BATON
  667. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  668.  
  669. local gol = {}
  670. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  671.  
  672. local twenfo = TweenInfo.new(.4)
  673. local twen = TweenService:Create(but,twenfo,gol,true)
  674. twen:Play()
  675. end)
  676. BATON.MouseLeave:Connect(function()
  677.  
  678. local but = BATON
  679. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  680.  
  681. local gol = {}
  682. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  683.  
  684. local twenfo = TweenInfo.new(.4)
  685. local twen = TweenService:Create(but,twenfo,gol,true)
  686. twen:Play()
  687. end)
  688.  
  689. BATTERINGRAM.Name = "BATTERING-RAM"
  690. BATTERINGRAM.Parent = ItemScroll
  691. BATTERINGRAM.BackgroundColor3 = Color3.new(0, 0, 0)
  692. BATTERINGRAM.BackgroundTransparency = 0.69999998807907
  693. BATTERINGRAM.BorderSizePixel = 0
  694. BATTERINGRAM.Position = UDim2.new(0, 0, 0.273000002, 0)
  695. BATTERINGRAM.Size = UDim2.new(0, 172, 0, 27)
  696. BATTERINGRAM.Font = Enum.Font.SourceSansLight
  697. BATTERINGRAM.Text = "BATTERING-RAM"
  698. BATTERINGRAM.TextColor3 = Color3.new(1, 1, 1)
  699. BATTERINGRAM.TextSize = 20
  700. BATTERINGRAM.TextWrapped = true
  701. BATTERINGRAM.MouseEnter:Connect(function()
  702. local but = BATTERINGRAM
  703. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  704.  
  705. local gol = {}
  706. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  707.  
  708. local twenfo = TweenInfo.new(.4)
  709. local twen = TweenService:Create(but,twenfo,gol,true)
  710. twen:Play()
  711. end)
  712. BATTERINGRAM.MouseLeave:Connect(function()
  713.  
  714. local but = BATTERINGRAM
  715. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  716.  
  717. local gol = {}
  718. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  719.  
  720. local twenfo = TweenInfo.new(.4)
  721. local twen = TweenService:Create(but,twenfo,gol,true)
  722. twen:Play()
  723. end)
  724.  
  725. BLACKBANDANA.Name = "BLACK-BANDANA"
  726. BLACKBANDANA.Parent = ItemScroll
  727. BLACKBANDANA.BackgroundColor3 = Color3.new(0, 0, 0)
  728. BLACKBANDANA.BackgroundTransparency = 0.69999998807907
  729. BLACKBANDANA.BorderSizePixel = 0
  730. BLACKBANDANA.Position = UDim2.new(0, 0, 0.455000013, 0)
  731. BLACKBANDANA.Size = UDim2.new(0, 172, 0, 27)
  732. BLACKBANDANA.Font = Enum.Font.SourceSansLight
  733. BLACKBANDANA.Text = "BLACK-BANDANA"
  734. BLACKBANDANA.TextColor3 = Color3.new(1, 1, 1)
  735. BLACKBANDANA.TextSize = 20
  736. BLACKBANDANA.TextWrapped = true
  737. BLACKBANDANA.MouseEnter:Connect(function()
  738. local but = BLACKBANDANA
  739. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  740.  
  741. local gol = {}
  742. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  743.  
  744. local twenfo = TweenInfo.new(.4)
  745. local twen = TweenService:Create(but,twenfo,gol,true)
  746. twen:Play()
  747. end)
  748. BLACKBANDANA.MouseLeave:Connect(function()
  749.  
  750. local but = BLACKBANDANA
  751. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  752.  
  753. local gol = {}
  754. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  755.  
  756. local twenfo = TweenInfo.new(.4)
  757. local twen = TweenService:Create(but,twenfo,gol,true)
  758. twen:Play()
  759. end)
  760.  
  761. BLUEBANDANA.Name = "BLUE-BANDANA"
  762. BLUEBANDANA.Parent = ItemScroll
  763. BLUEBANDANA.BackgroundColor3 = Color3.new(0, 0, 0)
  764. BLUEBANDANA.BackgroundTransparency = 0.69999998807907
  765. BLUEBANDANA.BorderSizePixel = 0
  766. BLUEBANDANA.Position = UDim2.new(0, 0, 0.363999993, 0)
  767. BLUEBANDANA.Size = UDim2.new(0, 172, 0, 27)
  768. BLUEBANDANA.Font = Enum.Font.SourceSansLight
  769. BLUEBANDANA.Text = "BLUE-BANDANA"
  770. BLUEBANDANA.TextColor3 = Color3.new(1, 1, 1)
  771. BLUEBANDANA.TextSize = 20
  772. BLUEBANDANA.TextWrapped = true
  773. BLUEBANDANA.MouseEnter:Connect(function()
  774. local but = BLUEBANDANA
  775. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  776.  
  777. local gol = {}
  778. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  779.  
  780. local twenfo = TweenInfo.new(.4)
  781. local twen = TweenService:Create(but,twenfo,gol,true)
  782. twen:Play()
  783. end)
  784. BLUEBANDANA.MouseLeave:Connect(function()
  785.  
  786. local but = BLUEBANDANA
  787. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  788.  
  789. local gol = {}
  790. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  791.  
  792. local twenfo = TweenInfo.new(.4)
  793. local twen = TweenService:Create(but,twenfo,gol,true)
  794. twen:Play()
  795. end)
  796.  
  797. BURRITO.Name = "BURRITO"
  798. BURRITO.Parent = ItemScroll
  799. BURRITO.BackgroundColor3 = Color3.new(0, 0, 0)
  800. BURRITO.BackgroundTransparency = 0.69999998807907
  801. BURRITO.BorderSizePixel = 0
  802. BURRITO.Position = UDim2.new(0, 0, 0.442000002, 0)
  803. BURRITO.Size = UDim2.new(0, 172, 0, 27)
  804. BURRITO.Font = Enum.Font.SourceSansLight
  805. BURRITO.Text = "BURRITO"
  806. BURRITO.TextColor3 = Color3.new(1, 1, 1)
  807. BURRITO.TextSize = 20
  808. BURRITO.TextWrapped = true
  809. BURRITO.MouseEnter:Connect(function()
  810. local but = BURRITO
  811. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  812.  
  813. local gol = {}
  814. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  815.  
  816. local twenfo = TweenInfo.new(.4)
  817. local twen = TweenService:Create(but,twenfo,gol,true)
  818. twen:Play()
  819. end)
  820. BURRITO.MouseLeave:Connect(function()
  821.  
  822. local but = BURRITO
  823. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  824.  
  825. local gol = {}
  826. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  827.  
  828. local twenfo = TweenInfo.new(.4)
  829. local twen = TweenService:Create(but,twenfo,gol,true)
  830. twen:Play()
  831. end)
  832.  
  833. CHERRYSPICE.Name = "CHERRY-SPICE"
  834. CHERRYSPICE.Parent = ItemScroll
  835. CHERRYSPICE.BackgroundColor3 = Color3.new(0, 0, 0)
  836. CHERRYSPICE.BackgroundTransparency = 0.69999998807907
  837. CHERRYSPICE.BorderSizePixel = 0
  838. CHERRYSPICE.Position = UDim2.new(0, 0, 0.324999988, 0)
  839. CHERRYSPICE.Size = UDim2.new(0, 172, 0, 27)
  840. CHERRYSPICE.Font = Enum.Font.SourceSansLight
  841. CHERRYSPICE.Text = "CHERRY-SPICE"
  842. CHERRYSPICE.TextColor3 = Color3.new(1, 1, 1)
  843. CHERRYSPICE.TextSize = 20
  844. CHERRYSPICE.TextWrapped = true
  845. CHERRYSPICE.MouseEnter:Connect(function()
  846. local but = CHERRYSPICE
  847. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  848.  
  849. local gol = {}
  850. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  851.  
  852. local twenfo = TweenInfo.new(.4)
  853. local twen = TweenService:Create(but,twenfo,gol,true)
  854. twen:Play()
  855. end)
  856. CHERRYSPICE.MouseLeave:Connect(function()
  857.  
  858. local but = CHERRYSPICE
  859. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  860.  
  861. local gol = {}
  862. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  863.  
  864. local twenfo = TweenInfo.new(.4)
  865. local twen = TweenService:Create(but,twenfo,gol,true)
  866. twen:Play()
  867. end)
  868.  
  869. CHIPS.Name = "CHIPS"
  870. CHIPS.Parent = ItemScroll
  871. CHIPS.BackgroundColor3 = Color3.new(0, 0, 0)
  872. CHIPS.BackgroundTransparency = 0.69999998807907
  873. CHIPS.BorderSizePixel = 0
  874. CHIPS.Position = UDim2.new(0, 0, 0.416000009, 0)
  875. CHIPS.Size = UDim2.new(0, 172, 0, 27)
  876. CHIPS.Font = Enum.Font.SourceSansLight
  877. CHIPS.Text = "CHIPS"
  878. CHIPS.TextColor3 = Color3.new(1, 1, 1)
  879. CHIPS.TextSize = 20
  880. CHIPS.TextWrapped = true
  881. CHIPS.MouseEnter:Connect(function()
  882. local but = CHIPS
  883. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  884.  
  885. local gol = {}
  886. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  887.  
  888. local twenfo = TweenInfo.new(.4)
  889. local twen = TweenService:Create(but,twenfo,gol,true)
  890. twen:Play()
  891. end)
  892. CHIPS.MouseLeave:Connect(function()
  893.  
  894. local but = CHIPS
  895. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  896.  
  897. local gol = {}
  898. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  899.  
  900. local twenfo = TweenInfo.new(.4)
  901. local twen = TweenService:Create(but,twenfo,gol,true)
  902. twen:Play()
  903. end)
  904.  
  905. DEAGLE.Name = "DEAGLE"
  906. DEAGLE.Parent = ItemScroll
  907. DEAGLE.BackgroundColor3 = Color3.new(0, 0, 0)
  908. DEAGLE.BackgroundTransparency = 0.69999998807907
  909. DEAGLE.BorderSizePixel = 0
  910. DEAGLE.Position = UDim2.new(0, 0, 0.208000004, 0)
  911. DEAGLE.Size = UDim2.new(0, 172, 0, 27)
  912. DEAGLE.Font = Enum.Font.SourceSansLight
  913. DEAGLE.Text = "DEAGLE"
  914. DEAGLE.TextColor3 = Color3.new(1, 1, 1)
  915. DEAGLE.TextSize = 20
  916. DEAGLE.TextWrapped = true
  917. DEAGLE.MouseEnter:Connect(function()
  918. local but = DEAGLE
  919. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  920.  
  921. local gol = {}
  922. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  923.  
  924. local twenfo = TweenInfo.new(.4)
  925. local twen = TweenService:Create(but,twenfo,gol,true)
  926. twen:Play()
  927. end)
  928. DEAGLE.MouseLeave:Connect(function()
  929.  
  930. local but = DEAGLE
  931. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  932.  
  933. local gol = {}
  934. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  935.  
  936. local twenfo = TweenInfo.new(.4)
  937. local twen = TweenService:Create(but,twenfo,gol,true)
  938. twen:Play()
  939. end)
  940.  
  941. GDEAGLE.Name = "GDEAGLE"
  942. GDEAGLE.Parent = ItemScroll
  943. GDEAGLE.BackgroundColor3 = Color3.new(0, 0, 0)
  944. GDEAGLE.BackgroundTransparency = 0.69999998807907
  945. GDEAGLE.BorderSizePixel = 0
  946. GDEAGLE.Position = UDim2.new(0, 0, 0.0390000008, 0)
  947. GDEAGLE.Size = UDim2.new(0, 172, 0, 27)
  948. GDEAGLE.Font = Enum.Font.SourceSansLight
  949. GDEAGLE.Text = "GOLD-DEAGLE"
  950. GDEAGLE.TextColor3 = Color3.new(1, 1, 1)
  951. GDEAGLE.TextSize = 20
  952. GDEAGLE.TextWrapped = true
  953. GDEAGLE.MouseEnter:Connect(function()
  954. local but = GDEAGLE
  955. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  956.  
  957. local gol = {}
  958. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  959.  
  960. local twenfo = TweenInfo.new(.4)
  961. local twen = TweenService:Create(but,twenfo,gol,true)
  962. twen:Play()
  963. end)
  964. GDEAGLE.MouseLeave:Connect(function()
  965.  
  966. local but = GDEAGLE
  967. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  968.  
  969. local gol = {}
  970. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  971.  
  972. local twenfo = TweenInfo.new(.4)
  973. local twen = TweenService:Create(but,twenfo,gol,true)
  974. twen:Play()
  975. end)
  976.  
  977. GLOCK.Name = "GLOCK"
  978. GLOCK.Parent = ItemScroll
  979. GLOCK.BackgroundColor3 = Color3.new(0, 0, 0)
  980. GLOCK.BackgroundTransparency = 0.69999998807907
  981. GLOCK.BorderSizePixel = 0
  982. GLOCK.Position = UDim2.new(0, 0, 0.116999999, 0)
  983. GLOCK.Size = UDim2.new(0, 172, 0, 27)
  984. GLOCK.Font = Enum.Font.SourceSansLight
  985. GLOCK.Text = "GLOCK"
  986. GLOCK.TextColor3 = Color3.new(1, 1, 1)
  987. GLOCK.TextSize = 20
  988. GLOCK.TextWrapped = true
  989. GLOCK.MouseEnter:Connect(function()
  990. local but = GLOCK
  991. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  992.  
  993. local gol = {}
  994. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  995.  
  996. local twenfo = TweenInfo.new(.4)
  997. local twen = TweenService:Create(but,twenfo,gol,true)
  998. twen:Play()
  999. end)
  1000. GLOCK.MouseLeave:Connect(function()
  1001.  
  1002. local but = GLOCK
  1003. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1004.  
  1005. local gol = {}
  1006. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1007.  
  1008. local twenfo = TweenInfo.new(.4)
  1009. local twen = TweenService:Create(but,twenfo,gol,true)
  1010. twen:Play()
  1011. end)
  1012.  
  1013. GLOCKBEAM.Name = "GLOCK-BEAM"
  1014. GLOCKBEAM.Parent = ItemScroll
  1015. GLOCKBEAM.BackgroundColor3 = Color3.new(0, 0, 0)
  1016. GLOCKBEAM.BackgroundTransparency = 0.69999998807907
  1017. GLOCKBEAM.BorderSizePixel = 0
  1018. GLOCKBEAM.Position = UDim2.new(0, 0, 0.298999995, 0)
  1019. GLOCKBEAM.Size = UDim2.new(0, 172, 0, 27)
  1020. GLOCKBEAM.Font = Enum.Font.SourceSansLight
  1021. GLOCKBEAM.Text = "GLOCK-BEAM"
  1022. GLOCKBEAM.TextColor3 = Color3.new(1, 1, 1)
  1023. GLOCKBEAM.TextSize = 20
  1024. GLOCKBEAM.TextWrapped = true
  1025. GLOCKBEAM.MouseEnter:Connect(function()
  1026. local but = GLOCKBEAM
  1027. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1028.  
  1029. local gol = {}
  1030. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1031.  
  1032. local twenfo = TweenInfo.new(.4)
  1033. local twen = TweenService:Create(but,twenfo,gol,true)
  1034. twen:Play()
  1035. end)
  1036. GLOCKBEAM.MouseLeave:Connect(function()
  1037.  
  1038. local but = GLOCKBEAM
  1039. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1040.  
  1041. local gol = {}
  1042. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1043.  
  1044. local twenfo = TweenInfo.new(.4)
  1045. local twen = TweenService:Create(but,twenfo,gol,true)
  1046. twen:Play()
  1047. end)
  1048.  
  1049. GOLDAK.Name = "GOLDAK"
  1050. GOLDAK.Parent = ItemScroll
  1051. GOLDAK.BackgroundColor3 = Color3.new(0, 0, 0)
  1052. GOLDAK.BackgroundTransparency = 0.69999998807907
  1053. GOLDAK.BorderSizePixel = 0
  1054. GOLDAK.Position = UDim2.new(0, 0, 0.0130000003, 0)
  1055. GOLDAK.Size = UDim2.new(0, 172, 0, 27)
  1056. GOLDAK.Font = Enum.Font.SourceSansLight
  1057. GOLDAK.Text = "GOLD-AK"
  1058. GOLDAK.TextColor3 = Color3.new(1, 1, 1)
  1059. GOLDAK.TextSize = 20
  1060. GOLDAK.TextWrapped = true
  1061. GOLDAK.MouseEnter:Connect(function()
  1062. local but = GOLDAK
  1063. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1064.  
  1065. local gol = {}
  1066. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1067.  
  1068. local twenfo = TweenInfo.new(.4)
  1069. local twen = TweenService:Create(but,twenfo,gol,true)
  1070. twen:Play()
  1071. end)
  1072. GOLDAK.MouseLeave:Connect(function()
  1073.  
  1074. local but = GOLDAK
  1075. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1076.  
  1077. local gol = {}
  1078. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1079.  
  1080. local twenfo = TweenInfo.new(.4)
  1081. local twen = TweenService:Create(but,twenfo,gol,true)
  1082. twen:Play()
  1083. end)
  1084.  
  1085. GOLDROSSI.Name = "GOLDROSSI"
  1086. GOLDROSSI.Parent = ItemScroll
  1087. GOLDROSSI.BackgroundColor3 = Color3.new(0, 0, 0)
  1088. GOLDROSSI.BackgroundTransparency = 0.69999998807907
  1089. GOLDROSSI.BorderSizePixel = 0
  1090. GOLDROSSI.Position = UDim2.new(0, 0, 0.0260000005, 0)
  1091. GOLDROSSI.Size = UDim2.new(0, 172, 0, 27)
  1092. GOLDROSSI.Font = Enum.Font.SourceSansLight
  1093. GOLDROSSI.Text = "GOLD-ROSSI"
  1094. GOLDROSSI.TextColor3 = Color3.new(1, 1, 1)
  1095. GOLDROSSI.TextSize = 20
  1096. GOLDROSSI.TextWrapped = true
  1097. GOLDROSSI.MouseEnter:Connect(function()
  1098. local but = GOLDROSSI
  1099. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1100.  
  1101. local gol = {}
  1102. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1103.  
  1104. local twenfo = TweenInfo.new(.4)
  1105. local twen = TweenService:Create(but,twenfo,gol,true)
  1106. twen:Play()
  1107. end)
  1108. GOLDROSSI.MouseLeave:Connect(function()
  1109.  
  1110. local but = GOLDROSSI
  1111. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1112.  
  1113. local gol = {}
  1114. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1115.  
  1116. local twenfo = TweenInfo.new(.4)
  1117. local twen = TweenService:Create(but,twenfo,gol,true)
  1118. twen:Play()
  1119. end)
  1120.  
  1121. HAMMER.Name = "HAMMER"
  1122. HAMMER.Parent = ItemScroll
  1123. HAMMER.BackgroundColor3 = Color3.new(0, 0, 0)
  1124. HAMMER.BackgroundTransparency = 0.69999998807907
  1125. HAMMER.BorderSizePixel = 0
  1126. HAMMER.Position = UDim2.new(0, 0, 0.25999999, 0)
  1127. HAMMER.Size = UDim2.new(0, 172, 0, 27)
  1128. HAMMER.Font = Enum.Font.SourceSansLight
  1129. HAMMER.Text = "HAMMER"
  1130. HAMMER.TextColor3 = Color3.new(1, 1, 1)
  1131. HAMMER.TextSize = 20
  1132. HAMMER.TextWrapped = true
  1133. HAMMER.MouseEnter:Connect(function()
  1134. local but = HAMMER
  1135. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1136.  
  1137. local gol = {}
  1138. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1139.  
  1140. local twenfo = TweenInfo.new(.4)
  1141. local twen = TweenService:Create(but,twenfo,gol,true)
  1142. twen:Play()
  1143. end)
  1144. HAMMER.MouseLeave:Connect(function()
  1145.  
  1146. local but = HAMMER
  1147. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1148.  
  1149. local gol = {}
  1150. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1151.  
  1152. local twenfo = TweenInfo.new(.4)
  1153. local twen = TweenService:Create(but,twenfo,gol,true)
  1154. twen:Play()
  1155. end)
  1156.  
  1157. KNIFE.Name = "KNIFE"
  1158. KNIFE.Parent = ItemScroll
  1159. KNIFE.BackgroundColor3 = Color3.new(0, 0, 0)
  1160. KNIFE.BackgroundTransparency = 0.69999998807907
  1161. KNIFE.BorderSizePixel = 0
  1162. KNIFE.Position = UDim2.new(0, 0, 0.0780000016, 0)
  1163. KNIFE.Size = UDim2.new(0, 172, 0, 27)
  1164. KNIFE.Font = Enum.Font.SourceSansLight
  1165. KNIFE.Text = "KNIFE"
  1166. KNIFE.TextColor3 = Color3.new(1, 1, 1)
  1167. KNIFE.TextSize = 20
  1168. KNIFE.TextWrapped = true
  1169. KNIFE.MouseEnter:Connect(function()
  1170. local but = KNIFE
  1171. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1172.  
  1173. local gol = {}
  1174. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1175.  
  1176. local twenfo = TweenInfo.new(.4)
  1177. local twen = TweenService:Create(but,twenfo,gol,true)
  1178. twen:Play()
  1179. end)
  1180. KNIFE.MouseLeave:Connect(function()
  1181.  
  1182. local but = KNIFE
  1183. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1184.  
  1185. local gol = {}
  1186. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1187.  
  1188. local twenfo = TweenInfo.new(.4)
  1189. local twen = TweenService:Create(but,twenfo,gol,true)
  1190. twen:Play()
  1191. end)
  1192.  
  1193. LUNCH.Name = "LUNCH"
  1194. LUNCH.Parent = ItemScroll
  1195. LUNCH.BackgroundColor3 = Color3.new(0, 0, 0)
  1196. LUNCH.BackgroundTransparency = 0.69999998807907
  1197. LUNCH.BorderSizePixel = 0
  1198. LUNCH.Position = UDim2.new(0, 0, 0.42899999, 0)
  1199. LUNCH.Size = UDim2.new(0, 172, 0, 27)
  1200. LUNCH.Font = Enum.Font.SourceSansLight
  1201. LUNCH.Text = "LUNCH"
  1202. LUNCH.TextColor3 = Color3.new(1, 1, 1)
  1203. LUNCH.TextSize = 20
  1204. LUNCH.TextWrapped = true
  1205. LUNCH.MouseEnter:Connect(function()
  1206. local but = LUNCH
  1207. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1208.  
  1209. local gol = {}
  1210. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1211.  
  1212. local twenfo = TweenInfo.new(.4)
  1213. local twen = TweenService:Create(but,twenfo,gol,true)
  1214. twen:Play()
  1215. end)
  1216. LUNCH.MouseLeave:Connect(function()
  1217.  
  1218. local but = LUNCH
  1219. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1220.  
  1221. local gol = {}
  1222. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1223.  
  1224. local twenfo = TweenInfo.new(.4)
  1225. local twen = TweenService:Create(but,twenfo,gol,true)
  1226. twen:Play()
  1227. end)
  1228.  
  1229. M1911.Name = "M1911"
  1230. M1911.Parent = ItemScroll
  1231. M1911.BackgroundColor3 = Color3.new(0, 0, 0)
  1232. M1911.BackgroundTransparency = 0.69999998807907
  1233. M1911.BorderSizePixel = 0
  1234. M1911.Position = UDim2.new(0, 0, 0.194999993, 0)
  1235. M1911.Size = UDim2.new(0, 172, 0, 27)
  1236. M1911.Font = Enum.Font.SourceSansLight
  1237. M1911.Text = "M1911"
  1238. M1911.TextColor3 = Color3.new(1, 1, 1)
  1239. M1911.TextSize = 20
  1240. M1911.TextWrapped = true
  1241. M1911.MouseEnter:Connect(function()
  1242. local but = M1911
  1243. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1244.  
  1245. local gol = {}
  1246. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1247.  
  1248. local twenfo = TweenInfo.new(.4)
  1249. local twen = TweenService:Create(but,twenfo,gol,true)
  1250. twen:Play()
  1251. end)
  1252. M1911.MouseLeave:Connect(function()
  1253.  
  1254. local but = M1911
  1255. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1256.  
  1257. local gol = {}
  1258. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1259.  
  1260. local twenfo = TweenInfo.new(.4)
  1261. local twen = TweenService:Create(but,twenfo,gol,true)
  1262. twen:Play()
  1263. end)
  1264.  
  1265. M1911S.Name = "M1911-S"
  1266. M1911S.Parent = ItemScroll
  1267. M1911S.BackgroundColor3 = Color3.new(0, 0, 0)
  1268. M1911S.BackgroundTransparency = 0.69999998807907
  1269. M1911S.BorderSizePixel = 0
  1270. M1911S.Position = UDim2.new(0, 0, 0.286000013, 0)
  1271. M1911S.Size = UDim2.new(0, 172, 0, 27)
  1272. M1911S.Font = Enum.Font.SourceSansLight
  1273. M1911S.Text = "M1911-S"
  1274. M1911S.TextColor3 = Color3.new(1, 1, 1)
  1275. M1911S.TextSize = 20
  1276. M1911S.TextWrapped = true
  1277. M1911S.MouseEnter:Connect(function()
  1278. local but = M1911S
  1279. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1280.  
  1281. local gol = {}
  1282. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1283.  
  1284. local twenfo = TweenInfo.new(.4)
  1285. local twen = TweenService:Create(but,twenfo,gol,true)
  1286. twen:Play()
  1287. end)
  1288. M1911S.MouseLeave:Connect(function()
  1289.  
  1290. local but = M1911S
  1291. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1292.  
  1293. local gol = {}
  1294. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1295.  
  1296. local twenfo = TweenInfo.new(.4)
  1297. local twen = TweenService:Create(but,twenfo,gol,true)
  1298. twen:Play()
  1299. end)
  1300.  
  1301. MAC10.Name = "MAC10"
  1302. MAC10.Parent = ItemScroll
  1303. MAC10.BackgroundColor3 = Color3.new(0, 0, 0)
  1304. MAC10.BackgroundTransparency = 0.69999998807907
  1305. MAC10.BorderSizePixel = 0
  1306. MAC10.Position = UDim2.new(0, 0, 0.0520000011, 0)
  1307. MAC10.Size = UDim2.new(0, 172, 0, 27)
  1308. MAC10.Font = Enum.Font.SourceSansLight
  1309. MAC10.Text = "MAC-10"
  1310. MAC10.TextColor3 = Color3.new(1, 1, 1)
  1311. MAC10.TextSize = 20
  1312. MAC10.TextWrapped = true
  1313. MAC10.MouseEnter:Connect(function()
  1314. local but = MAC10
  1315. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1316.  
  1317. local gol = {}
  1318. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1319.  
  1320. local twenfo = TweenInfo.new(.4)
  1321. local twen = TweenService:Create(but,twenfo,gol,true)
  1322. twen:Play()
  1323. end)
  1324. MAC10.MouseLeave:Connect(function()
  1325.  
  1326. local but = MAC10
  1327. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1328.  
  1329. local gol = {}
  1330. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1331.  
  1332. local twenfo = TweenInfo.new(.4)
  1333. local twen = TweenService:Create(but,twenfo,gol,true)
  1334. twen:Play()
  1335. end)
  1336.  
  1337. MP5.Name = "MP5"
  1338. MP5.Parent = ItemScroll
  1339. MP5.BackgroundColor3 = Color3.new(0, 0, 0)
  1340. MP5.BackgroundTransparency = 0.69999998807907
  1341. MP5.BorderSizePixel = 0
  1342. MP5.Position = UDim2.new(0, 0, 0.104000002, 0)
  1343. MP5.Size = UDim2.new(0, 172, 0, 27)
  1344. MP5.Font = Enum.Font.SourceSansLight
  1345. MP5.Text = "MP5"
  1346. MP5.TextColor3 = Color3.new(1, 1, 1)
  1347. MP5.TextSize = 20
  1348. MP5.TextWrapped = true
  1349. MP5.MouseEnter:Connect(function()
  1350. local but = MP5
  1351. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1352.  
  1353. local gol = {}
  1354. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1355.  
  1356. local twenfo = TweenInfo.new(.4)
  1357. local twen = TweenService:Create(but,twenfo,gol,true)
  1358. twen:Play()
  1359. end)
  1360. MP5.MouseLeave:Connect(function()
  1361.  
  1362. local but = MP5
  1363. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1364.  
  1365. local gol = {}
  1366. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1367.  
  1368. local twenfo = TweenInfo.new(.4)
  1369. local twen = TweenService:Create(but,twenfo,gol,true)
  1370. twen:Play()
  1371. end)
  1372.  
  1373. PAINKILLERS.Name = "PAIN-KILLERS"
  1374. PAINKILLERS.Parent = ItemScroll
  1375. PAINKILLERS.BackgroundColor3 = Color3.new(0, 0, 0)
  1376. PAINKILLERS.BackgroundTransparency = 0.69999998807907
  1377. PAINKILLERS.BorderSizePixel = 0
  1378. PAINKILLERS.Position = UDim2.new(0, 0, 0.377000004, 0)
  1379. PAINKILLERS.Size = UDim2.new(0, 172, 0, 27)
  1380. PAINKILLERS.Font = Enum.Font.SourceSansLight
  1381. PAINKILLERS.Text = "PAIN-KILLERS"
  1382. PAINKILLERS.TextColor3 = Color3.new(1, 1, 1)
  1383. PAINKILLERS.TextSize = 20
  1384. PAINKILLERS.TextWrapped = true
  1385. PAINKILLERS.MouseEnter:Connect(function()
  1386. local but = PAINKILLERS
  1387. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1388.  
  1389. local gol = {}
  1390. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1391.  
  1392. local twenfo = TweenInfo.new(.4)
  1393. local twen = TweenService:Create(but,twenfo,gol,true)
  1394. twen:Play()
  1395. end)
  1396. PAINKILLERS.MouseLeave:Connect(function()
  1397.  
  1398. local but = PAINKILLERS
  1399. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1400.  
  1401. local gol = {}
  1402. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1403.  
  1404. local twenfo = TweenInfo.new(.4)
  1405. local twen = TweenService:Create(but,twenfo,gol,true)
  1406. twen:Play()
  1407. end)
  1408.  
  1409. PDGLOCK.Name = "PD-GLOCK"
  1410. PDGLOCK.Parent = ItemScroll
  1411. PDGLOCK.BackgroundColor3 = Color3.new(0, 0, 0)
  1412. PDGLOCK.BackgroundTransparency = 0.69999998807907
  1413. PDGLOCK.BorderSizePixel = 0
  1414. PDGLOCK.Position = UDim2.new(0, 0, 0.181999996, 0)
  1415. PDGLOCK.Size = UDim2.new(0, 172, 0, 27)
  1416. PDGLOCK.Font = Enum.Font.SourceSansLight
  1417. PDGLOCK.Text = "PD-GLOCK"
  1418. PDGLOCK.TextColor3 = Color3.new(1, 1, 1)
  1419. PDGLOCK.TextSize = 20
  1420. PDGLOCK.TextWrapped = true
  1421. PDGLOCK.MouseEnter:Connect(function()
  1422. local but = PDGLOCK
  1423. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1424.  
  1425. local gol = {}
  1426. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1427.  
  1428. local twenfo = TweenInfo.new(.4)
  1429. local twen = TweenService:Create(but,twenfo,gol,true)
  1430. twen:Play()
  1431. end)
  1432. PDGLOCK.MouseLeave:Connect(function()
  1433.  
  1434. local but = PDGLOCK
  1435. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1436.  
  1437. local gol = {}
  1438. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1439.  
  1440. local twenfo = TweenInfo.new(.4)
  1441. local twen = TweenService:Create(but,twenfo,gol,true)
  1442. twen:Play()
  1443. end)
  1444.  
  1445. PURPLEGUN.Name = "PURPLE-GUN"
  1446. PURPLEGUN.Parent = ItemScroll
  1447. PURPLEGUN.BackgroundColor3 = Color3.new(0, 0, 0)
  1448. PURPLEGUN.BackgroundTransparency = 0.69999998807907
  1449. PURPLEGUN.BorderSizePixel = 0
  1450. PURPLEGUN.Position = UDim2.new(0, 0, 0.246999994, 0)
  1451. PURPLEGUN.Size = UDim2.new(0, 172, 0, 27)
  1452. PURPLEGUN.Font = Enum.Font.SourceSansLight
  1453. PURPLEGUN.Text = "PURPLE-GUN"
  1454. PURPLEGUN.TextColor3 = Color3.new(1, 1, 1)
  1455. PURPLEGUN.TextSize = 20
  1456. PURPLEGUN.TextWrapped = true
  1457. PURPLEGUN.MouseEnter:Connect(function()
  1458. local but = PURPLEGUN
  1459. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1460.  
  1461. local gol = {}
  1462. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1463.  
  1464. local twenfo = TweenInfo.new(.4)
  1465. local twen = TweenService:Create(but,twenfo,gol,true)
  1466. twen:Play()
  1467. end)
  1468. PURPLEGUN.MouseLeave:Connect(function()
  1469.  
  1470. local but = PURPLEGUN
  1471. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1472.  
  1473. local gol = {}
  1474. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1475.  
  1476. local twenfo = TweenInfo.new(.4)
  1477. local twen = TweenService:Create(but,twenfo,gol,true)
  1478. twen:Play()
  1479. end)
  1480.  
  1481. REDBANDANA.Name = "RED-BANDANA"
  1482. REDBANDANA.Parent = ItemScroll
  1483. REDBANDANA.BackgroundColor3 = Color3.new(0, 0, 0)
  1484. REDBANDANA.BackgroundTransparency = 0.69999998807907
  1485. REDBANDANA.BorderSizePixel = 0
  1486. REDBANDANA.Position = UDim2.new(0, 0, 0.402999997, 0)
  1487. REDBANDANA.Size = UDim2.new(0, 172, 0, 27)
  1488. REDBANDANA.Font = Enum.Font.SourceSansLight
  1489. REDBANDANA.Text = "RED-BANDANA"
  1490. REDBANDANA.TextColor3 = Color3.new(1, 1, 1)
  1491. REDBANDANA.TextSize = 20
  1492. REDBANDANA.TextWrapped = true
  1493. REDBANDANA.MouseEnter:Connect(function()
  1494. local but = REDBANDANA
  1495. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1496.  
  1497. local gol = {}
  1498. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1499.  
  1500. local twenfo = TweenInfo.new(.4)
  1501. local twen = TweenService:Create(but,twenfo,gol,true)
  1502. twen:Play()
  1503. end)
  1504. REDBANDANA.MouseLeave:Connect(function()
  1505.  
  1506. local but = REDBANDANA
  1507. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1508.  
  1509. local gol = {}
  1510. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1511.  
  1512. local twenfo = TweenInfo.new(.4)
  1513. local twen = TweenService:Create(but,twenfo,gol,true)
  1514. twen:Play()
  1515. end)
  1516.  
  1517. REMINGTON.Name = "REMINGTON"
  1518. REMINGTON.Parent = ItemScroll
  1519. REMINGTON.BackgroundColor3 = Color3.new(0, 0, 0)
  1520. REMINGTON.BackgroundTransparency = 0.69999998807907
  1521. REMINGTON.BorderSizePixel = 0
  1522. REMINGTON.Position = UDim2.new(0, 0, 0.169, 0)
  1523. REMINGTON.Size = UDim2.new(0, 172, 0, 27)
  1524. REMINGTON.Font = Enum.Font.SourceSansLight
  1525. REMINGTON.Text = "REMINGTON"
  1526. REMINGTON.TextColor3 = Color3.new(1, 1, 1)
  1527. REMINGTON.TextSize = 20
  1528. REMINGTON.TextWrapped = true
  1529. REMINGTON.MouseEnter:Connect(function()
  1530. local but = REMINGTON
  1531. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1532.  
  1533. local gol = {}
  1534. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1535.  
  1536. local twenfo = TweenInfo.new(.4)
  1537. local twen = TweenService:Create(but,twenfo,gol,true)
  1538. twen:Play()
  1539. end)
  1540. REMINGTON.MouseLeave:Connect(function()
  1541.  
  1542. local but = REMINGTON
  1543. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1544.  
  1545. local gol = {}
  1546. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1547.  
  1548. local twenfo = TweenInfo.new(.4)
  1549. local twen = TweenService:Create(but,twenfo,gol,true)
  1550. twen:Play()
  1551. end)
  1552.  
  1553. ROOTBEER.Name = "ROOT-BEER"
  1554. ROOTBEER.Parent = ItemScroll
  1555. ROOTBEER.BackgroundColor3 = Color3.new(0, 0, 0)
  1556. ROOTBEER.BackgroundTransparency = 0.69999998807907
  1557. ROOTBEER.BorderSizePixel = 0
  1558. ROOTBEER.Position = UDim2.new(0, 0, 0.338, 0)
  1559. ROOTBEER.Size = UDim2.new(0, 172, 0, 27)
  1560. ROOTBEER.Font = Enum.Font.SourceSansLight
  1561. ROOTBEER.Text = "ROOT-BEER"
  1562. ROOTBEER.TextColor3 = Color3.new(1, 1, 1)
  1563. ROOTBEER.TextSize = 20
  1564. ROOTBEER.TextWrapped = true
  1565. ROOTBEER.MouseEnter:Connect(function()
  1566. local but = ROOTBEER
  1567. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1568.  
  1569. local gol = {}
  1570. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1571.  
  1572. local twenfo = TweenInfo.new(.4)
  1573. local twen = TweenService:Create(but,twenfo,gol,true)
  1574. twen:Play()
  1575. end)
  1576. ROOTBEER.MouseLeave:Connect(function()
  1577.  
  1578. local but = ROOTBEER
  1579. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1580.  
  1581. local gol = {}
  1582. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1583.  
  1584. local twenfo = TweenInfo.new(.4)
  1585. local twen = TweenService:Create(but,twenfo,gol,true)
  1586. twen:Play()
  1587. end)
  1588.  
  1589. ROSSI.Name = "ROSSI"
  1590. ROSSI.Parent = ItemScroll
  1591. ROSSI.BackgroundColor3 = Color3.new(0, 0, 0)
  1592. ROSSI.BackgroundTransparency = 0.69999998807907
  1593. ROSSI.BorderSizePixel = 0
  1594. ROSSI.Position = UDim2.new(0, 0, 0.129999995, 0)
  1595. ROSSI.Size = UDim2.new(0, 172, 0, 27)
  1596. ROSSI.Font = Enum.Font.SourceSansLight
  1597. ROSSI.Text = "ROSSI"
  1598. ROSSI.TextColor3 = Color3.new(1, 1, 1)
  1599. ROSSI.TextSize = 20
  1600. ROSSI.TextWrapped = true
  1601. ROSSI.MouseEnter:Connect(function()
  1602. local but = ROSSI
  1603. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1604.  
  1605. local gol = {}
  1606. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1607.  
  1608. local twenfo = TweenInfo.new(.4)
  1609. local twen = TweenService:Create(but,twenfo,gol,true)
  1610. twen:Play()
  1611. end)
  1612. ROSSI.MouseLeave:Connect(function()
  1613.  
  1614. local but = ROSSI
  1615. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1616.  
  1617. local gol = {}
  1618. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1619.  
  1620. local twenfo = TweenInfo.new(.4)
  1621. local twen = TweenService:Create(but,twenfo,gol,true)
  1622. twen:Play()
  1623. end)
  1624.  
  1625. RUGER.Name = "RUGER"
  1626. RUGER.Parent = ItemScroll
  1627. RUGER.BackgroundColor3 = Color3.new(0, 0, 0)
  1628. RUGER.BackgroundTransparency = 0.69999998807907
  1629. RUGER.BorderSizePixel = 0
  1630. RUGER.Position = UDim2.new(0, 0, 0.221000001, 0)
  1631. RUGER.Size = UDim2.new(0, 172, 0, 27)
  1632. RUGER.Font = Enum.Font.SourceSansLight
  1633. RUGER.Text = "RUGER"
  1634. RUGER.TextColor3 = Color3.new(1, 1, 1)
  1635. RUGER.TextSize = 20
  1636. RUGER.TextWrapped = true
  1637. RUGER.MouseEnter:Connect(function()
  1638. local but = RUGER
  1639. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1640.  
  1641. local gol = {}
  1642. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1643.  
  1644. local twenfo = TweenInfo.new(.4)
  1645. local twen = TweenService:Create(but,twenfo,gol,true)
  1646. twen:Play()
  1647. end)
  1648. RUGER.MouseLeave:Connect(function()
  1649.  
  1650. local but = RUGER
  1651. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1652.  
  1653. local gol = {}
  1654. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1655.  
  1656. local twenfo = TweenInfo.new(.4)
  1657. local twen = TweenService:Create(but,twenfo,gol,true)
  1658. twen:Play()
  1659. end)
  1660.  
  1661. SPRAYPAINT.Name = "SPRAY-PAINT"
  1662. SPRAYPAINT.Parent = ItemScroll
  1663. SPRAYPAINT.BackgroundColor3 = Color3.new(0, 0, 0)
  1664. SPRAYPAINT.BackgroundTransparency = 0.69999998807907
  1665. SPRAYPAINT.BorderSizePixel = 0
  1666. SPRAYPAINT.Position = UDim2.new(0, 0, 0.351000011, 0)
  1667. SPRAYPAINT.Size = UDim2.new(0, 172, 0, 27)
  1668. SPRAYPAINT.Font = Enum.Font.SourceSansLight
  1669. SPRAYPAINT.Text = "SPRAY-PAINT"
  1670. SPRAYPAINT.TextColor3 = Color3.new(1, 1, 1)
  1671. SPRAYPAINT.TextSize = 20
  1672. SPRAYPAINT.TextWrapped = true
  1673. SPRAYPAINT.MouseEnter:Connect(function()
  1674. local but = SPRAYPAINT
  1675. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1676.  
  1677. local gol = {}
  1678. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1679.  
  1680. local twenfo = TweenInfo.new(.4)
  1681. local twen = TweenService:Create(but,twenfo,gol,true)
  1682. twen:Play()
  1683. end)
  1684. SPRAYPAINT.MouseLeave:Connect(function()
  1685.  
  1686. local but = SPRAYPAINT
  1687. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1688.  
  1689. local gol = {}
  1690. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1691.  
  1692. local twenfo = TweenInfo.new(.4)
  1693. local twen = TweenService:Create(but,twenfo,gol,true)
  1694. twen:Play()
  1695. end)
  1696.  
  1697. TASER.Name = "TASER"
  1698. TASER.Parent = ItemScroll
  1699. TASER.BackgroundColor3 = Color3.new(0, 0, 0)
  1700. TASER.BackgroundTransparency = 0.69999998807907
  1701. TASER.BorderSizePixel = 0
  1702. TASER.Position = UDim2.new(0, 0, 0.233999997, 0)
  1703. TASER.Size = UDim2.new(0, 172, 0, 27)
  1704. TASER.Font = Enum.Font.SourceSansLight
  1705. TASER.Text = "TASER"
  1706. TASER.TextColor3 = Color3.new(1, 1, 1)
  1707. TASER.TextSize = 20
  1708. TASER.TextWrapped = true
  1709. TASER.MouseEnter:Connect(function()
  1710. local but = TASER
  1711. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1712.  
  1713. local gol = {}
  1714. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1715.  
  1716. local twenfo = TweenInfo.new(.4)
  1717. local twen = TweenService:Create(but,twenfo,gol,true)
  1718. twen:Play()
  1719. end)
  1720. TASER.MouseLeave:Connect(function()
  1721.  
  1722. local but = TASER
  1723. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1724.  
  1725. local gol = {}
  1726. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1727.  
  1728. local twenfo = TweenInfo.new(.4)
  1729. local twen = TweenService:Create(but,twenfo,gol,true)
  1730. twen:Play()
  1731. end)
  1732.  
  1733. TEC9.Name = "TEC9"
  1734. TEC9.Parent = ItemScroll
  1735. TEC9.BackgroundColor3 = Color3.new(0, 0, 0)
  1736. TEC9.BackgroundTransparency = 0.69999998807907
  1737. TEC9.BorderSizePixel = 0
  1738. TEC9.Position = UDim2.new(0, 0, 0.0649999976, 0)
  1739. TEC9.Size = UDim2.new(0, 172, 0, 27)
  1740. TEC9.Font = Enum.Font.SourceSansLight
  1741. TEC9.Text = "TEC-9"
  1742. TEC9.TextColor3 = Color3.new(1, 1, 1)
  1743. TEC9.TextSize = 20
  1744. TEC9.TextWrapped = true
  1745. TEC9.MouseEnter:Connect(function()
  1746. local but = TEC9
  1747. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1748.  
  1749. local gol = {}
  1750. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1751.  
  1752. local twenfo = TweenInfo.new(.4)
  1753. local twen = TweenService:Create(but,twenfo,gol,true)
  1754. twen:Play()
  1755. end)
  1756. TEC9.MouseLeave:Connect(function()
  1757.  
  1758. local but = TEC9
  1759. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1760.  
  1761. local gol = {}
  1762. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1763.  
  1764. local twenfo = TweenInfo.new(.4)
  1765. local twen = TweenService:Create(but,twenfo,gol,true)
  1766. twen:Play()
  1767. end)
  1768.  
  1769. USP45.Name = "USP-45"
  1770. USP45.Parent = ItemScroll
  1771. USP45.BackgroundColor3 = Color3.new(0, 0, 0)
  1772. USP45.BackgroundTransparency = 0.69999998807907
  1773. USP45.BorderSizePixel = 0
  1774. USP45.Position = UDim2.new(0, 0, 0.156000003, 0)
  1775. USP45.Size = UDim2.new(0, 172, 0, 27)
  1776. USP45.Font = Enum.Font.SourceSansLight
  1777. USP45.Text = "USP-45"
  1778. USP45.TextColor3 = Color3.new(1, 1, 1)
  1779. USP45.TextSize = 20
  1780. USP45.TextWrapped = true
  1781. USP45.MouseEnter:Connect(function()
  1782. local but = USP45
  1783. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1784.  
  1785. local gol = {}
  1786. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1787.  
  1788. local twenfo = TweenInfo.new(.4)
  1789. local twen = TweenService:Create(but,twenfo,gol,true)
  1790. twen:Play()
  1791. end)
  1792. USP45.MouseLeave:Connect(function()
  1793.  
  1794. local but = USP45
  1795. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1796.  
  1797. local gol = {}
  1798. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1799.  
  1800. local twenfo = TweenInfo.new(.4)
  1801. local twen = TweenService:Create(but,twenfo,gol,true)
  1802. twen:Play()
  1803. end)
  1804.  
  1805. ItemAmount.Name = "ItemAmount"
  1806. ItemAmount.Parent = SpawningFrame
  1807. ItemAmount.BackgroundColor3 = Color3.new(0, 0, 0)
  1808. ItemAmount.BackgroundTransparency = 0.69999998807907
  1809. ItemAmount.BorderSizePixel = 0
  1810. ItemAmount.Position = UDim2.new(0.448275864, 0, 0.0595238209, 0)
  1811. ItemAmount.Size = UDim2.new(0, 225, 0, 24)
  1812. ItemAmount.Font = Enum.Font.SourceSansItalic
  1813. ItemAmount.PlaceholderColor3 = Color3.new(0.607843, 0.607843, 0.607843)
  1814. ItemAmount.PlaceholderText = "Amount"
  1815. ItemAmount.Text = ""
  1816. ItemAmount.TextColor3 = Color3.new(1, 1, 1)
  1817. ItemAmount.TextSize = 17
  1818. ItemAmount.TextWrapped = true
  1819. ItemAmount.MouseEnter:Connect(function()
  1820. local but = ItemAmount
  1821. but.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1822.  
  1823. local gol = {}
  1824. gol.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1825.  
  1826. local twenfo = TweenInfo.new(.4)
  1827. local twen = TweenService:Create(but,twenfo,gol,true)
  1828. twen:Play()
  1829. end)
  1830. ItemAmount.MouseLeave:Connect(function()
  1831.  
  1832. local but = ItemAmount
  1833. but.BackgroundColor3 = Color3.fromRGB(120,120,120)
  1834.  
  1835. local gol = {}
  1836. gol.BackgroundColor3 = Color3.fromRGB(0,0,0)
  1837.  
  1838. local twenfo = TweenInfo.new(.4)
  1839. local twen = TweenService:Create(but,twenfo,gol,true)
  1840. twen:Play()
  1841. end)
  1842.  
  1843. LocalPlayerFrame.Name = "LocalPlayerFrame"
  1844. LocalPlayerFrame.Parent = Main
  1845. LocalPlayerFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1846. LocalPlayerFrame.BackgroundTransparency = 0.69999998807907
  1847. LocalPlayerFrame.BorderSizePixel = 0
  1848. LocalPlayerFrame.Position = UDim2.new(0.015625, 0, 0.29838711, 0)
  1849. LocalPlayerFrame.Size = UDim2.new(0, 435, 0, 168)
  1850. LocalPlayerFrame.Visible = false
  1851.  
  1852. God1.Name = "God"
  1853. God1.Parent = LocalPlayerFrame
  1854. God1.BackgroundColor3 = Color3.new(0.94902, 0.2, 0.203922)
  1855. God1.BackgroundTransparency = 0.69999998807907
  1856. God1.BorderSizePixel = 0
  1857. God1.Position = UDim2.new(0.016091954, 0, 0.0595238097, 0)
  1858. God1.Size = UDim2.new(0, 207, 0, 24)
  1859. God1.Font = Enum.Font.SourceSansLight
  1860. God1.Text = "God"
  1861. God1.TextColor3 = Color3.new(1, 1, 1)
  1862. God1.TextSize = 17
  1863.  
  1864. Fly.Name = "Fly"
  1865. Fly.Parent = LocalPlayerFrame
  1866. Fly.BackgroundColor3 = Color3.new(0.94902, 0.2, 0.203922)
  1867. Fly.BackgroundTransparency = 0.69999998807907
  1868. Fly.BorderSizePixel = 0
  1869. Fly.Position = UDim2.new(0.508045971, 0, 0.0595238097, 0)
  1870. Fly.Size = UDim2.new(0, 207, 0, 24)
  1871. Fly.Font = Enum.Font.SourceSansLight
  1872. Fly.Text = "Fly"
  1873. Fly.TextColor3 = Color3.new(1, 1, 1)
  1874. Fly.TextSize = 17
  1875.  
  1876. Btools.Name = "Btools"
  1877. Btools.Parent = LocalPlayerFrame
  1878. Btools.BackgroundColor3 = Color3.new(0.94902, 0.2, 0.203922)
  1879. Btools.BackgroundTransparency = 0.69999998807907
  1880. Btools.BorderSizePixel = 0
  1881. Btools.Position = UDim2.new(0.506896555, 0, 0.255952388, 0)
  1882. Btools.Size = UDim2.new(0, 207, 0, 24)
  1883. Btools.Font = Enum.Font.SourceSansLight
  1884. Btools.Text = "Btools"
  1885. Btools.TextColor3 = Color3.new(1, 1, 1)
  1886. Btools.TextSize = 17
  1887.  
  1888. Noclip.Name = "Noclip"
  1889. Noclip.Parent = LocalPlayerFrame
  1890. Noclip.BackgroundColor3 = Color3.new(0.94902, 0.2, 0.203922)
  1891. Noclip.BackgroundTransparency = 0.69999998807907
  1892. Noclip.BorderSizePixel = 0
  1893. Noclip.Position = UDim2.new(0.0149425287, 0, 0.255952388, 0)
  1894. Noclip.Size = UDim2.new(0, 207, 0, 24)
  1895. Noclip.Font = Enum.Font.SourceSansLight
  1896. Noclip.Text = "Noclip"
  1897. Noclip.TextColor3 = Color3.new(1, 1, 1)
  1898. Noclip.TextSize = 17
  1899.  
  1900. CreditsFrame.Name = "CreditsFrame"
  1901. CreditsFrame.Parent = Main
  1902. CreditsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1903. CreditsFrame.BackgroundTransparency = 0.80000001192093
  1904. CreditsFrame.BorderSizePixel = 0
  1905. CreditsFrame.Position = UDim2.new(0.015625, 0, 0.29838711, 0)
  1906. CreditsFrame.Size = UDim2.new(0, 435, 0, 168)
  1907. CreditsFrame.Visible = false
  1908.  
  1909. Info_3.Name = "Info"
  1910. Info_3.Parent = CreditsFrame
  1911. Info_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1912. Info_3.BackgroundTransparency = 1
  1913. Info_3.Position = UDim2.new(0.30344826, 0, 0.0357142687, 0)
  1914. Info_3.Size = UDim2.new(0, 184, 0, 28)
  1915. Info_3.Font = Enum.Font.SourceSansSemibold
  1916. Info_3.Text = "Azimuth"
  1917. Info_3.TextColor3 = Color3.new(1, 1, 1)
  1918. Info_3.TextSize = 28
  1919.  
  1920. Info_4.Name = "Info"
  1921. Info_4.Parent = CreditsFrame
  1922. Info_4.BackgroundColor3 = Color3.new(1, 1, 1)
  1923. Info_4.BackgroundTransparency = 1
  1924. Info_4.Position = UDim2.new(0.00114942528, 0, 0.202380955, 0)
  1925. Info_4.Size = UDim2.new(0, 435, 0, 16)
  1926. Info_4.Font = Enum.Font.SourceSansLight
  1927. Info_4.Text = "GUI and tweening by chubs#8765"
  1928. Info_4.TextColor3 = Color3.new(1, 1, 1)
  1929. Info_4.TextSize = 18
  1930.  
  1931. Info_5.Name = "Info"
  1932. Info_5.Parent = CreditsFrame
  1933. Info_5.BackgroundColor3 = Color3.new(1, 1, 1)
  1934. Info_5.BackgroundTransparency = 1
  1935. Info_5.Position = UDim2.new(0.00114942528, 0, 0.339285731, 0)
  1936. Info_5.Size = UDim2.new(0, 435, 0, 16)
  1937. Info_5.Font = Enum.Font.SourceSansLight
  1938. Info_5.Text = "Networking by Lord_Piperr#8768"
  1939. Info_5.TextColor3 = Color3.new(1, 1, 1)
  1940. Info_5.TextSize = 18
  1941.  
  1942. Info_6.Name = "Info"
  1943. Info_6.Parent = CreditsFrame
  1944. Info_6.BackgroundColor3 = Color3.new(1, 1, 1)
  1945. Info_6.BackgroundTransparency = 1
  1946. Info_6.Position = UDim2.new(-0.00114942528, 0, 0.488095254, 0)
  1947. Info_6.Size = UDim2.new(0, 435, 0, 16)
  1948. Info_6.Font = Enum.Font.SourceSansLight
  1949. Info_6.Text = "Official owner and functions by Engineer#4999"
  1950. Info_6.TextColor3 = Color3.new(1, 1, 1)
  1951. Info_6.TextSize = 18
  1952.  
  1953. -- Misc
  1954.  
  1955. wait(0.001)
  1956. Name.Text = game.Players.LocalPlayer.Name
  1957.  
  1958. if Patched == true then
  1959. Status.Text = "Patched"
  1960. Status.TextColor3 = Color3.fromRGB(242, 51, 52)
  1961. else
  1962. Status.Text = "Unpatched"
  1963. Status.TextColor3 = Color3.fromRGB(75, 175, 75)
  1964. end
  1965.  
  1966. -- Buttons
  1967.  
  1968. AKBLADE.MouseButton1Click:Connect(function()
  1969. game.Workspace.Events.Shop:FireServer("Weps", 0, "AKBlade", gui, confirm)
  1970. CircleClick(AKBLADE, Mouse.X, Mouse.Y)
  1971. end)
  1972.  
  1973. AK47U.MouseButton1Click:Connect(function()
  1974. game.Workspace.Events.Shop:FireServer("Weps", 0, "Ak74u", gui, confirm)
  1975. CircleClick(AK47U, Mouse.X, Mouse.Y)
  1976. end)
  1977.  
  1978. BALACLAVA.MouseButton1Click:Connect(function()
  1979. game.Workspace.Events.Shop:FireServer("Items", 0, "Balaclava", gui, confirm)
  1980. CircleClick(BALACLAVA, Mouse.X, Mouse.Y)
  1981. end)
  1982.  
  1983. BAT.MouseButton1Click:Connect(function()
  1984. game.Workspace.Events.Shop:FireServer("Weps", 0, "Bat", gui, confirm)
  1985. CircleClick(BAT, Mouse.X, Mouse.Y)
  1986. end)
  1987.  
  1988. BATON.MouseButton1Click:Connect(function()
  1989. game.Workspace.Events.Shop:FireServer("Weps", 0, "Baton", gui, confirm)
  1990. CircleClick(BATON, Mouse.X, Mouse.Y)
  1991. end)
  1992.  
  1993. BATTERINGRAM.MouseButton1Click:Connect(function()
  1994. game.Workspace.Events.Shop:FireServer("Weps", 0, "BatteringRam", gui, confirm)
  1995. CircleClick(BATTERINGRAM, Mouse.X, Mouse.Y)
  1996. end)
  1997.  
  1998. BLACKBANDANA.MouseButton1Click:Connect(function()
  1999. game.Workspace.Events.Shop:FireServer("Items", 0, "BlackFlag", gui, confirm)
  2000. CircleClick(BLACKBANDANA, Mouse.X, Mouse.Y)
  2001. end)
  2002.  
  2003. BLUEBANDANA.MouseButton1Click:Connect(function()
  2004. game.Workspace.Events.Shop:FireServer("Items", 0, "BlueFlag", gui, confirm)
  2005. CircleClick(BLUEBANDANA, Mouse.X, Mouse.Y)
  2006. end)
  2007.  
  2008. BURRITO.MouseButton1Click:Connect(function()
  2009. game.Workspace.Events.Shop:FireServer("Food", 0, "Burrito", gui, confirm)
  2010. CircleClick(BURRITO, Mouse.X, Mouse.Y)
  2011. end)
  2012.  
  2013. CHERRYSPICE.MouseButton1Click:Connect(function()
  2014. game.Workspace.Shop:FireServer("Food", 0, "CherrySpice", gui, confirm)
  2015. CircleClick(CHERRYSPICE, Mouse.X, Mouse.Y)
  2016. end)
  2017.  
  2018. CHIPS.MouseButton1Click:Connect(function()
  2019. game.Workspace.Shop:FireServer("Food", 0, "Chips", gui, confirm)
  2020. CircleClick(CHIPS, Mouse.X, Mouse.Y)
  2021. end)
  2022.  
  2023. DEAGLE.MouseButton1Click:Connect(function()
  2024. game.Workspace.Events.Shop:FireServer("Weps", 0, "Deagle", gui, confirm)
  2025. CircleClick(DEAGLE, Mouse.X, Mouse.Y)
  2026. end)
  2027.  
  2028. GDEAGLE.MouseButton1Click:Connect(function()
  2029. game.Workspace.Shop:FireServer("Weps", 0, "GoldDeagle", gui, confirm)
  2030. CircleClick(GDEAGLE, Mouse.X, Mouse.Y)
  2031. end)
  2032.  
  2033. GLOCK.MouseButton1Click:Connect(function()
  2034. game.Workspace.Shop:FireServer("Weps", 0, "Glock", gui, confirm)
  2035. CircleClick(GLOCK, Mouse.X, Mouse.Y)
  2036. end)
  2037.  
  2038. GLOCKBEAM.MouseButton1Click:Connect(function()
  2039. game.Workspace.Shop:FireServer("Weps", 0, "GlockBeam", gui, confirm)
  2040. CircleClick(GLOCKBEAM, Mouse.X, Mouse.Y)
  2041. end)
  2042.  
  2043. GOLDAK.MouseButton1Click:Connect(function()
  2044. game.Workspace.Shop:FireServer("Weps", 0, "GoldAk", gui, confirm)
  2045. CircleClick(GOLDAK, Mouse.X, Mouse.Y)
  2046. end)
  2047.  
  2048. GOLDROSSI.MouseButton1Click:Connect(function()
  2049. game.Workspace.Events.Shop:FireServer("Weps", 0, "GoldRossi", gui, confirm)
  2050. CircleClick(GOLDROSSI, Mouse.X, Mouse.Y)
  2051. end)
  2052.  
  2053. HAMMER.MouseButton1Click:Connect(function()
  2054. game.Workspace.Events.Shop:FireServer("Weps", 0, "Hammer", gui, confirm)
  2055. CircleClick(HAMMER, Mouse.X, Mouse.Y)
  2056. end)
  2057.  
  2058. KNIFE.MouseButton1Click:Connect(function()
  2059. game.Workspace.Events.Shop:FireServer("Weps", 0, "Knife", gui, confirm)
  2060. CircleClick(KNIFE, Mouse.X, Mouse.Y)
  2061. end)
  2062.  
  2063. LUNCH.MouseButton1Click:Connect(function()
  2064. game.Workspace.Events.Shop:FireServer("Items", 0, "Lunch", gui, confirm)
  2065. CircleClick(LUNCH, Mouse.X, Mouse.Y)
  2066. end)
  2067.  
  2068. M1911.MouseButton1Click:Connect(function()
  2069. game.Workspace.Events.Shop:FireServer("Weps", 0, "M1911", gui, confirm)
  2070. CircleClick(M1911, Mouse.X, Mouse.Y)
  2071. end)
  2072.  
  2073. M1911S.MouseButton1Click:Connect(function()
  2074. warn("not done yet sorry")
  2075. CircleClick(M1911S, Mouse.X, Mouse.Y)
  2076. end)
  2077.  
  2078. MAC10.MouseButton1Click:Connect(function()
  2079. game.Workspace.Events.Shop:FireServer("Weps", 0, "Mac10", gui, confirm)
  2080. CircleClick(MAC10, Mouse.X, Mouse.Y)
  2081. end)
  2082.  
  2083. MP5.MouseButton1Click:Connect(function()
  2084. game.Workspace.Events.Shop:FireServer("Weps", 0, "Mp5", gui, confirm)
  2085. CircleClick(MP5, Mouse.X, Mouse.Y)
  2086. end)
  2087.  
  2088. PAINKILLERS.MouseButton1Click:Connect(function()
  2089. game.Workspace.Events.Shop:FireServer("Items", 0, "Painkillers", gui, confirm)
  2090. CircleClick(PAINKILLERS, Mouse.X, Mouse.Y)
  2091. end)
  2092.  
  2093. PDGLOCK.MouseButton1Click:Connect(function()
  2094. game.Workspace.Events.Shop:FireServer("Weps", 0, "PDGlock", gui, confirm)
  2095. CircleClick(PDGLOCK, Mouse.X, Mouse.Y)
  2096. end)
  2097.  
  2098. PURPLEGUN.MouseButton1Click:Connect(function()
  2099. game.Workspace.Events.Shop:FireServer("Weps", 0, "PurpleGun", gui, confirm)
  2100. CircleClick(PURPLEGUN, Mouse.X, Mouse.Y)
  2101. end)
  2102.  
  2103. REDBANDANA.MouseButton1Click:Connect(function()
  2104. game.Workspace.Events.Shop:FireServer("Items", 0, "RedFlag", gui, confirm)
  2105. CircleClick(REDBANDANA, Mouse.X, Mouse.Y)
  2106. end)
  2107.  
  2108. REMINGTON.MouseButton1Click:Connect(function()
  2109. game.Workspace.Events.Shop:FireServer("Weps", 0, "Remington", gui, confirm)
  2110. CircleClick(REMINGTON, Mouse.X, Mouse.Y)
  2111. end)
  2112.  
  2113. ROOTBEER.MouseButton1Click:Connect(function()
  2114. game.Workspace.Events.Shop:FireServer("Items", 0, "RootBeer", gui, confirm)
  2115. CircleClick(ROOTBEER, Mouse.X, Mouse.Y)
  2116. end)
  2117.  
  2118. ROSSI.MouseButton1Click:Connect(function()
  2119. game.Workspace.Events.Shop:FireServer("Weps", 0, "Rossi", gui, confirm)
  2120. CircleClick(ROSSI, Mouse.X, Mouse.Y)
  2121. end)
  2122.  
  2123. RUGER.MouseButton1Click:Connect(function()
  2124. game.Workspace.Events.Shop:FireServer("Weps", 0, "Rugger", gui, confirm)
  2125. CircleClick(RUGER, Mouse.X, Mouse.Y)
  2126. end)
  2127.  
  2128. SPRAYPAINT.MouseButton1Click:Connect(function()
  2129. game.Workspace.Events.Shop:FireServer("Items", 0, "SprayPaint", gui, confirm)
  2130. CircleClick(SPRAYPAINT, Mouse.X, Mouse.Y)
  2131. end)
  2132.  
  2133. TASER.MouseButton1Click:Connect(function()
  2134. game.Workspace.Events.Shop:FireServer("Weps", 0, "Taser", gui, confirm)
  2135. CircleClick(TASER, Mouse.X, Mouse.Y)
  2136. end)
  2137.  
  2138. TEC9.MouseButton1Click:Connect(function()
  2139. game.Workspace.Events.Shop:FireServer("Weps", 0, "Tec9", gui, confirm)
  2140. CircleClick(TEC9, Mouse.X, Mouse.Y)
  2141. end)
  2142.  
  2143. USP45.MouseButton1Click:Connect(function()
  2144. game.Workspace.Events.Shop:FireServer("Weps", 0, "USP45", gui, confirm)
  2145. CircleClick(USP45, Mouse.X, Mouse.Y)
  2146. end)
  2147.  
  2148. Btools.MouseButton1Click:Connect(function() --done
  2149. if btoolson == false then
  2150. btoolson = true
  2151. local but = Btools
  2152. but.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2153.  
  2154. local gol = {}
  2155. gol.BackgroundColor3 = Color3.fromRGB(75, 175, 75)
  2156.  
  2157. local twenfo = TweenInfo.new(.4)
  2158. local twen = TweenService:Create(but,twenfo,gol,true)
  2159. twen:Play()
  2160. local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  2161. local tool2 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  2162. local tool3 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  2163. local tool4 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  2164. local tool5 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  2165. tool1.BinType = "Clone"
  2166. tool2.BinType = "GameTool"
  2167. tool3.BinType = "Hammer"
  2168. tool4.BinType = "Script"
  2169. tool5.BinType = "Grab"
  2170. else
  2171. btoolson = false
  2172. local but = Btools
  2173. but.BackgroundColor3 = Color3.fromRGB(75,175,75)
  2174.  
  2175. local gol = {}
  2176. gol.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2177.  
  2178. local twenfo = TweenInfo.new(.4)
  2179. local twen = TweenService:Create(but,twenfo,gol,true)
  2180. twen:Play()
  2181. end
  2182. CircleClick(Btools, Mouse.X, Mouse.Y)
  2183. end)
  2184.  
  2185. Fly.MouseButton1Click:Connect(function() --done
  2186. if flyon == false then
  2187. flyon = true
  2188. local but = Fly
  2189. but.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2190.  
  2191. local gol = {}
  2192. gol.BackgroundColor3 = Color3.fromRGB(75, 175, 75)
  2193.  
  2194. local twenfo = TweenInfo.new(.4)
  2195. local twen = TweenService:Create(but,twenfo,gol,true)
  2196. twen:Play()
  2197. repeat wait() until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  2198. local mouse = game.Players.LocalPlayer:GetMouse()
  2199. repeat wait() until mouse
  2200. local plr = game.Players.LocalPlayer
  2201. local torso = plr.Character.Torso
  2202. local flying = true
  2203. local deb = true
  2204. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  2205. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2206. local maxspeed = 50
  2207. local speed = 0
  2208. function Fly()
  2209. local bg = Instance.new("BodyGyro", torso)
  2210. bg.P = 9e4
  2211. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2212. bg.cframe = torso.CFrame
  2213. local bv = Instance.new("BodyVelocity", torso)
  2214. bv.velocity = Vector3.new(0,0.1,0)
  2215. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2216. repeat wait()
  2217. plr.Character.Humanoid.PlatformStand = true
  2218. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  2219. speed = speed+.5+(speed/maxspeed)
  2220. if speed > maxspeed then
  2221. speed = maxspeed
  2222. end
  2223. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  2224. speed = speed-1
  2225. if speed < 0 then
  2226. speed = 0
  2227. end
  2228. end
  2229. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  2230. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2231. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  2232. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  2233. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2234. else
  2235. bv.velocity = Vector3.new(0,0.1,0)
  2236. end
  2237. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  2238. until not flying
  2239. ctrl = {f = 0, b = 0, l = 0, r = 0}
  2240. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2241. speed = 0
  2242. bg:Destroy()
  2243. bv:Destroy()
  2244. plr.Character.Humanoid.PlatformStand = false
  2245. end
  2246. mouse.KeyDown:connect(function(key)
  2247. if key:lower() == "f" then
  2248. if flying then flying = false
  2249. else
  2250. flying = true
  2251. Fly()
  2252. end
  2253. elseif key:lower() == "w" then
  2254. ctrl.f = 1
  2255. elseif key:lower() == "s" then
  2256. ctrl.b = -1
  2257. elseif key:lower() == "a" then
  2258. ctrl.l = -1
  2259. elseif key:lower() == "d" then
  2260. ctrl.r = 1
  2261. end
  2262. end)
  2263. mouse.KeyUp:connect(function(key)
  2264. if key:lower() == "w" then
  2265. ctrl.f = 0
  2266. elseif key:lower() == "s" then
  2267. ctrl.b = 0
  2268. elseif key:lower() == "a" then
  2269. ctrl.l = 0
  2270. elseif key:lower() == "d" then
  2271. ctrl.r = 0
  2272. end
  2273. end)
  2274. Fly()
  2275. else
  2276. flyon = false
  2277. local but = Fly
  2278. but.BackgroundColor3 = Color3.fromRGB(75,175,75)
  2279.  
  2280. local gol = {}
  2281. gol.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2282.  
  2283. local twenfo = TweenInfo.new(.4)
  2284. local twen = TweenService:Create(but,twenfo,gol,true)
  2285. twen:Play()
  2286. end
  2287. CircleClick(Btools, Mouse.X, Mouse.Y)
  2288. end)
  2289.  
  2290. God1.MouseButton1Click:Connect(function() --done
  2291. if godon == false then
  2292. godon = true
  2293. local but = God1
  2294. but.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2295.  
  2296. local gol = {}
  2297. gol.BackgroundColor3 = Color3.fromRGB(75, 175, 75)
  2298.  
  2299. local twenfo = TweenInfo.new(.4)
  2300. local twen = TweenService:Create(but,twenfo,gol,true)
  2301. twen:Play()
  2302. local PlayerSelected = LocalPlayer
  2303. for i,v in pairs(workspace:GetDescendants()) do
  2304. if v:IsA("RemoteEvent") and v.Name == "Damage" then
  2305. pcall(function()
  2306. v:FireServer(game:GetService("Players")[PlayerSelected].Character.Humanoid, -100000000, game:GetService("Players")[PlayerSelected].Character.Head)
  2307. end)
  2308. end
  2309. end
  2310. else
  2311. godon = false
  2312. local but = Fly
  2313. but.BackgroundColor3 = Color3.fromRGB(75,175,75)
  2314.  
  2315. local gol = {}
  2316. gol.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2317.  
  2318. local twenfo = TweenInfo.new(.4)
  2319. local twen = TweenService:Create(but,twenfo,gol,true)
  2320. twen:Play()
  2321. end
  2322. local PlayerSelected = LocalPlayer
  2323. for i,v in pairs(workspace:GetDescendants()) do
  2324. if v:IsA("RemoteEvent") and v.Name == "Damage" then
  2325. pcall(function()
  2326. v:FireServer(game:GetService("Players")[PlayerSelected].Character.Humanoid, -100000000, game:GetService("Players")[PlayerSelected].Character.Head)
  2327. end)
  2328. end
  2329. end
  2330. CircleClick(God1, Mouse.X, Mouse.Y)
  2331. end)
  2332.  
  2333. Noclip.MouseButton1Click:Connect(function() --done
  2334. if noclipon == false then
  2335. noclipon = true
  2336. local but = Fly
  2337. but.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2338.  
  2339. local gol = {}
  2340. gol.BackgroundColor3 = Color3.fromRGB(75, 175, 75)
  2341.  
  2342. local twenfo = TweenInfo.new(.4)
  2343. local twen = TweenService:Create(but,twenfo,gol,true)
  2344. twen:Play()
  2345. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2346. else
  2347. noclipon = false
  2348. local but = Noclip
  2349. but.BackgroundColor3 = Color3.fromRGB(75,175,75)
  2350.  
  2351. local gol = {}
  2352. gol.BackgroundColor3 = Color3.fromRGB(242, 51, 52)
  2353.  
  2354. local twenfo = TweenInfo.new(.4)
  2355. local twen = TweenService:Create(but,twenfo,gol,true)
  2356. twen:Play()
  2357. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2358. end
  2359. CircleClick(Noclip, Mouse.X, Mouse.Y)
  2360. end)
  2361.  
  2362. Credits.MouseButton1Click:Connect(function()
  2363. HomeFrame.Visible = false
  2364. SpawningFrame.Visible = false
  2365. LocalPlayer.Visible = false
  2366. Credits.Visible = true
  2367. CircleClick(Credits, Mouse.X, Mouse.Y)
  2368. end)
  2369.  
  2370. Exit.MouseButton1Click:Connect(function()
  2371. for _,v in pairs(Azimuth:GetDescendants()) do
  2372. if v.ClassName == "TextLabel" then
  2373.  
  2374. local but = Title
  2375. but.TextTransparency = 0
  2376. local gol = {}
  2377. gol.TextTransparency = 1
  2378. local twenfo = TweenInfo.new(.4)
  2379. local twen = TweenService:Create(but,twenfo,gol,true)
  2380. twen:Play()
  2381.  
  2382. local but = Info
  2383. but.TextTransparency = 0
  2384. local gol = {}
  2385. gol.TextTransparency = 1
  2386. local twenfo = TweenInfo.new(.4)
  2387. local twen = TweenService:Create(but,twenfo,gol,true)
  2388. twen:Play()
  2389.  
  2390.  
  2391.  
  2392. local but = Info
  2393. but.TextTransparency = 0
  2394. local gol = {}
  2395. gol.TextTransparency = 1
  2396. local twenfo = TweenInfo.new(.4)
  2397. local twen = TweenService:Create(but,twenfo,gol,true)
  2398. twen:Play()
  2399.  
  2400. local but = Info
  2401. but.TextTransparency = 0
  2402. local gol = {}
  2403. gol.TextTransparency = 1
  2404. local twenfo = TweenInfo.new(.4)
  2405. local twen = TweenService:Create(but,twenfo,gol,true)
  2406. twen:Play()
  2407.  
  2408. local but = Info
  2409. but.TextTransparency = 0
  2410. local gol = {}
  2411. gol.TextTransparency = 1
  2412. local twenfo = TweenInfo.new(.4)
  2413. local twen = TweenService:Create(but,twenfo,gol,true)
  2414. twen:Play()
  2415.  
  2416. local but = Info
  2417. but.TextTransparency = 0
  2418. local gol = {}
  2419. gol.TextTransparency = 1
  2420. local twenfo = TweenInfo.new(.4)
  2421. local twen = TweenService:Create(but,twenfo,gol,true)
  2422. twen:Play()
  2423.  
  2424. local but = Info
  2425. but.TextTransparency = 0
  2426. local gol = {}
  2427. gol.TextTransparency = 1
  2428. local twenfo = TweenInfo.new(.4)
  2429. local twen = TweenService:Create(but,twenfo,gol,true)
  2430. twen:Play()
  2431.  
  2432. local but = Info
  2433. but.TextTransparency = 0
  2434. local gol = {}
  2435. gol.TextTransparency = 1
  2436. local twenfo = TweenInfo.new(.4)
  2437. local twen = TweenService:Create(but,twenfo,gol,true)
  2438. twen:Play()
  2439.  
  2440. local but = Info
  2441. but.TextTransparency = 0
  2442. local gol = {}
  2443. gol.TextTransparency = 1
  2444. local twenfo = TweenInfo.new(.4)
  2445. local twen = TweenService:Create(but,twenfo,gol,true)
  2446. twen:Play()
  2447.  
  2448. local but = Info
  2449. but.TextTransparency = 0
  2450. local gol = {}
  2451. gol.TextTransparency = 1
  2452. local twenfo = TweenInfo.new(.4)
  2453. local twen = TweenService:Create(but,twenfo,gol,true)
  2454. twen:Play()
  2455.  
  2456. local but = Name
  2457. but.TextTransparency = 0
  2458. local gol = {}
  2459. gol.TextTransparency = 1
  2460. local twenfo = TweenInfo.new(.4)
  2461. local twen = TweenService:Create(but,twenfo,gol,true)
  2462. twen:Play()
  2463.  
  2464. local but = Status
  2465. but.TextTransparency = 0
  2466. local gol = {}
  2467. gol.TextTransparency = 1
  2468. local twenfo = TweenInfo.new(.4)
  2469. local twen = TweenService:Create(but,twenfo,gol,true)
  2470. twen:Play()
  2471.  
  2472. local but = Info
  2473. but.TextTransparency = 0
  2474. local gol = {}
  2475. gol.TextTransparency = 1
  2476. local twenfo = TweenInfo.new(.4)
  2477. local twen = TweenService:Create(but,twenfo,gol,true)
  2478. twen:Play()
  2479.  
  2480. local but = Tries
  2481. but.TextTransparency = 0
  2482. local gol = {}
  2483. gol.TextTransparency = 1
  2484. local twenfo = TweenInfo.new(.4)
  2485. local twen = TweenService:Create(but,twenfo,gol,true)
  2486. twen:Play()
  2487.  
  2488. local but = Info
  2489. but.TextTransparency = 0
  2490. local gol = {}
  2491. gol.TextTransparency = 1
  2492. local twenfo = TweenInfo.new(.4)
  2493. local twen = TweenService:Create(but,twenfo,gol,true)
  2494. twen:Play()
  2495.  
  2496. local but = Info
  2497. but.TextTransparency = 0
  2498. local gol = {}
  2499. gol.TextTransparency = 1
  2500. local twenfo = TweenInfo.new(.4)
  2501. local twen = TweenService:Create(but,twenfo,gol,true)
  2502. twen:Play()
  2503.  
  2504. local but = Info
  2505. but.TextTransparency = 0
  2506. local gol = {}
  2507. gol.TextTransparency = 1
  2508. local twenfo = TweenInfo.new(.4)
  2509. local twen = TweenService:Create(but,twenfo,gol,true)
  2510. twen:Play()
  2511.  
  2512. elseif v.ClassName == "TextBox" then
  2513. local but = v
  2514. but.BackgroundTransparency = 0.7
  2515. but.TextTransparency = 0
  2516.  
  2517. local gol = {}
  2518. gol.BackgroundTransparency = 1
  2519. gol.TextTransparency = 1
  2520.  
  2521. local twenfo = TweenInfo.new(.4)
  2522. local twen = TweenService:Create(but,twenfo,gol,true)
  2523. twen:Play()
  2524. elseif v.ClassName == "Frame" then
  2525. local but = v
  2526. but.BackgroundTransparency = 0.7
  2527.  
  2528. local gol = {}
  2529. gol.BackgroundTransparency = 1
  2530.  
  2531. local twenfo = TweenInfo.new(.4)
  2532. local twen = TweenService:Create(but,twenfo,gol,true)
  2533. twen:Play()
  2534. elseif v.ClassName == "TextButton" then
  2535. local but = v
  2536. but.BackgroundTransparency = 0.7
  2537. but.TextTransparency = 0
  2538.  
  2539. local gol = {}
  2540. gol.BackgroundTransparency = 1
  2541. gol.TextTransparency = 1
  2542.  
  2543. local twenfo = TweenInfo.new(.4)
  2544. local twen = TweenService:Create(but,twenfo,gol,true)
  2545. twen:Play()
  2546. elseif v.ClassName == "ScrollingFrame" then
  2547. local but = v
  2548. but.BackgroundTransparency = 0.7
  2549.  
  2550. local gol = {}
  2551. gol.BackgroundTransparency = 1
  2552.  
  2553. local twenfo = TweenInfo.new(.4)
  2554. local twen = TweenService:Create(but,twenfo,gol,true)
  2555. twen:Play()
  2556. end
  2557. end
  2558. CircleClick(Exit, Mouse.X, Mouse.Y)
  2559. wait(1)
  2560. Azimuth:Destroy()
  2561. end)
  2562.  
  2563. Home.MouseButton1Click:Connect(function()
  2564. HomeFrame.Visible = true
  2565. SpawningFrame.Visible = false
  2566. LocalPlayer.Visible = false
  2567. Credits.Visible = false
  2568. CircleClick(Home, Mouse.X, Mouse.Y)
  2569. end)
  2570.  
  2571. LocalPlayer.MouseButton1Click:Connect(function()
  2572. HomeFrame.Visible = false
  2573. SpawningFrame.Visible = false
  2574. LocalPlayer.Visible = true
  2575. Credits.Visible = false
  2576. CircleClick(LocalPlayer, Mouse.X, Mouse.Y)
  2577. end)
  2578.  
  2579. Minimize.MouseButton1Click:Connect(function()
  2580. Azimuth:Destroy()
  2581. CircleClick(Minimize, Mouse.X, Mouse.Y)
  2582. end)
  2583.  
  2584. Spawning.MouseButton1Click:Connect(function()
  2585. HomeFrame.Visible = false
  2586. SpawningFrame.Visible = true
  2587. LocalPlayer.Visible = false
  2588. Credits.Visible = false
  2589. CircleClick(Spawning, Mouse.X, Mouse.Y)
  2590. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement