Advertisement
thegameplayer

Hitbox

Mar 4th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.92 KB | None | 0 0
  1.  
  2.  
  3. local lp = game:FindService("Players").LocalPlayer
  4.  
  5. local function gplr(String)
  6. local Found = {}
  7. local strl = String:lower()
  8. if strl == "all" then
  9. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  10. table.insert(Found,v)
  11. end
  12. elseif strl == "others" then
  13. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  14. if v.Name ~= lp.Name then
  15. table.insert(Found,v)
  16. end
  17. end
  18. elseif strl == "me" then
  19. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  20. if v.Name == lp.Name then
  21. table.insert(Found,v)
  22. end
  23. end
  24. else
  25. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  26. if v.Name:lower():sub(1, #String) == String:lower() then
  27. table.insert(Found,v)
  28. end
  29. end
  30. end
  31. return Found
  32. end
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. -- Gui to Lua
  43. -- Version: 3.2
  44.  
  45. -- Instances:
  46.  
  47. local Hitboxv5 = Instance.new("ScreenGui")
  48. local Open = Instance.new("TextButton")
  49. local drag = Instance.new("Frame")
  50. local Frame = Instance.new("Frame")
  51. local ScrollingFrame = Instance.new("ScrollingFrame")
  52. local Home = Instance.new("TextButton")
  53. local Hitbox = Instance.new("TextButton")
  54. local Player = Instance.new("TextButton")
  55. local TeamHitbox = Instance.new("TextButton")
  56. local Destroygui = Instance.new("TextButton")
  57. local HO = Instance.new("Frame")
  58. local Rejoin = Instance.new("TextButton")
  59. local Good = Instance.new("TextLabel")
  60. local Name1 = Instance.new("TextLabel")
  61. local CC = Instance.new("TextLabel")
  62. local Hit = Instance.new("Frame")
  63. local Hitb = Instance.new("TextBox")
  64. local SI = Instance.new("TextLabel")
  65. local Trans = Instance.new("TextBox")
  66. local Tran = Instance.new("TextLabel")
  67. local Matt = Instance.new("TextLabel")
  68. local Mat = Instance.new("TextButton")
  69. local ScrollingFrame_2 = Instance.new("ScrollingFrame")
  70. local Brick = Instance.new("TextButton")
  71. local Neon = Instance.new("TextButton")
  72. local Wood = Instance.new("TextButton")
  73. local Red = Instance.new("TextBox")
  74. local R = Instance.new("TextLabel")
  75. local Green = Instance.new("TextBox")
  76. local G = Instance.new("TextLabel")
  77. local Blue = Instance.new("TextBox")
  78. local B = Instance.new("TextLabel")
  79. local ONoff = Instance.new("TextButton")
  80. local Pla = Instance.new("Frame")
  81. local Hitb1 = Instance.new("TextBox")
  82. local SI1 = Instance.new("TextLabel")
  83. local Trans1 = Instance.new("TextBox")
  84. local Tran1 = Instance.new("TextLabel")
  85. local Matt1 = Instance.new("TextLabel")
  86. local Mat1 = Instance.new("TextButton")
  87. local ScrollingFrame_3 = Instance.new("ScrollingFrame")
  88. local Brick_2 = Instance.new("TextButton")
  89. local Neon_2 = Instance.new("TextButton")
  90. local Wood_2 = Instance.new("TextButton")
  91. local red1 = Instance.new("TextBox")
  92. local R1 = Instance.new("TextLabel")
  93. local Green1 = Instance.new("TextBox")
  94. local G1 = Instance.new("TextLabel")
  95. local Blue1 = Instance.new("TextBox")
  96. local B1 = Instance.new("TextLabel")
  97. local ONoff1 = Instance.new("TextButton")
  98. local Target = Instance.new("TextBox")
  99. local Team = Instance.new("Frame")
  100. local Hitb2 = Instance.new("TextBox")
  101. local SI2 = Instance.new("TextLabel")
  102. local Trans2 = Instance.new("TextBox")
  103. local Tran2 = Instance.new("TextLabel")
  104. local Matt2 = Instance.new("TextLabel")
  105. local Mat2 = Instance.new("TextButton")
  106. local ScrollingFrame_4 = Instance.new("ScrollingFrame")
  107. local Brick_3 = Instance.new("TextButton")
  108. local Neon_3 = Instance.new("TextButton")
  109. local Wood_3 = Instance.new("TextButton")
  110. local Red2 = Instance.new("TextBox")
  111. local R2 = Instance.new("TextLabel")
  112. local Green2 = Instance.new("TextBox")
  113. local G2 = Instance.new("TextLabel")
  114. local blue2 = Instance.new("TextBox")
  115. local B2 = Instance.new("TextLabel")
  116. local ONoff2 = Instance.new("TextButton")
  117. local TeamTarget = Instance.new("TextBox")
  118. local Close = Instance.new("TextButton")
  119. local Minimize = Instance.new("TextButton")
  120.  
  121. --Properties:
  122.  
  123. Hitboxv5.Name = "Hitbox v5"
  124. Hitboxv5.Parent = game.CoreGui
  125. Hitboxv5.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  126.  
  127. Open.Name = "Open"
  128. Open.Parent = Hitboxv5
  129. Open.BackgroundColor3 = Color3.fromRGB(138, 138, 138)
  130. Open.BorderColor3 = Color3.fromRGB(26, 41, 52)
  131. Open.Position = UDim2.new(0, 0, 0.440625012, 0)
  132. Open.Size = UDim2.new(0, 53, 0, 37)
  133. Open.Font = Enum.Font.SourceSans
  134. Open.Text = "Open"
  135. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  136. Open.TextScaled = true
  137. Open.TextSize = 14.000
  138. Open.TextWrapped = true
  139. Open.MouseButton1Click:Connect(function()
  140. Open.Visible = false
  141. drag.Visible = true
  142. end)
  143.  
  144. drag.Name = "drag"
  145. drag.Parent = Hitboxv5
  146. drag.Active = true
  147. drag.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  148. drag.Position = UDim2.new(0.096753329, 0, 0.0194161441, 0)
  149. drag.Size = UDim2.new(0, 386, 0, 31)
  150. drag.Visible = false
  151. drag.Draggable = true
  152.  
  153. Frame.Parent = drag
  154. Frame.Active = true
  155. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  156. Frame.BorderColor3 = Color3.fromRGB(0, 0, 148)
  157. Frame.BorderSizePixel = 0
  158. Frame.Position = UDim2.new(-0.00300000003, 0, 2.02399993, 0)
  159. Frame.Size = UDim2.new(0, 388, 0, 250)
  160.  
  161. ScrollingFrame.Parent = Frame
  162. ScrollingFrame.Active = true
  163. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  164. ScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  165. ScrollingFrame.BorderSizePixel = 0
  166. ScrollingFrame.Size = UDim2.new(0, 89, 0, 250)
  167. ScrollingFrame.BottomImage = ""
  168. ScrollingFrame.MidImage = ""
  169. ScrollingFrame.TopImage = ""
  170.  
  171. Home.Name = "Home"
  172. Home.Parent = ScrollingFrame
  173. Home.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  174. Home.BorderColor3 = Color3.fromRGB(184, 0, 3)
  175. Home.BorderSizePixel = 0
  176. Home.Position = UDim2.new(0.099999994, 0, 0.0120000001, 0)
  177. Home.Size = UDim2.new(0, 64, 0, 27)
  178. Home.Font = Enum.Font.SourceSans
  179. Home.Text = "Home"
  180. Home.TextColor3 = Color3.fromRGB(255, 255, 255)
  181. Home.TextScaled = true
  182. Home.TextSize = 14.000
  183. Home.TextWrapped = true
  184. Home.MouseButton1Click:Connect(function()
  185. Hit.Visible = false
  186. Pla.Visible = false
  187. Team.Visible = false
  188. HO.Visible = true
  189. end)
  190.  
  191. Hitbox.Name = "Hitbox"
  192. Hitbox.Parent = ScrollingFrame
  193. Hitbox.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  194. Hitbox.BorderColor3 = Color3.fromRGB(184, 0, 3)
  195. Hitbox.BorderSizePixel = 0
  196. Hitbox.Position = UDim2.new(0.099999994, 0, 0.0820000023, 0)
  197. Hitbox.Size = UDim2.new(0, 64, 0, 27)
  198. Hitbox.Font = Enum.Font.SourceSans
  199. Hitbox.Text = "Hitbox"
  200. Hitbox.TextColor3 = Color3.fromRGB(255, 255, 255)
  201. Hitbox.TextScaled = true
  202. Hitbox.TextSize = 14.000
  203. Hitbox.TextWrapped = true
  204. Hitbox.MouseButton1Click:Connect(function()
  205. Hit.Visible = true
  206. Pla.Visible = false
  207. Team.Visible = false
  208. HO.Visible = false
  209. end)
  210.  
  211. Player.Name = "Player"
  212. Player.Parent = ScrollingFrame
  213. Player.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  214. Player.BorderColor3 = Color3.fromRGB(184, 0, 3)
  215. Player.BorderSizePixel = 0
  216. Player.Position = UDim2.new(0.099999994, 0, 0.15200001, 0)
  217. Player.Size = UDim2.new(0, 64, 0, 27)
  218. Player.Font = Enum.Font.SourceSans
  219. Player.Text = "Player"
  220. Player.TextColor3 = Color3.fromRGB(255, 255, 255)
  221. Player.TextScaled = true
  222. Player.TextSize = 14.000
  223. Player.TextWrapped = true
  224. Player.MouseButton1Click:Connect(function()
  225. Hit.Visible = false
  226. Pla.Visible = true
  227. Team.Visible = false
  228. HO.Visible = false
  229. end)
  230.  
  231. TeamHitbox.Name = "Team Hitbox"
  232. TeamHitbox.Parent = ScrollingFrame
  233. TeamHitbox.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  234. TeamHitbox.BorderColor3 = Color3.fromRGB(184, 0, 3)
  235. TeamHitbox.BorderSizePixel = 0
  236. TeamHitbox.Position = UDim2.new(0.0887640417, 0, 0.222000003, 0)
  237. TeamHitbox.Size = UDim2.new(0, 64, 0, 27)
  238. TeamHitbox.Font = Enum.Font.SourceSans
  239. TeamHitbox.Text = "Team Hitbox (Coming Soon)"
  240. TeamHitbox.TextColor3 = Color3.fromRGB(255, 255, 255)
  241. TeamHitbox.TextScaled = true
  242. TeamHitbox.TextSize = 14.000
  243. TeamHitbox.TextWrapped = true
  244. TeamHitbox.MouseButton1Click:Connect(function()
  245. Hit.Visible = false
  246. Pla.Visible = false
  247. Team.Visible = true
  248. HO.Visible = false
  249. end)
  250.  
  251. Destroygui.Name = "Destroy gui"
  252. Destroygui.Parent = ScrollingFrame
  253. Destroygui.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  254. Destroygui.BorderSizePixel = 0
  255. Destroygui.Position = UDim2.new(0.0898876414, 0, 0.294, 0)
  256. Destroygui.Size = UDim2.new(0, 64, 0, 27)
  257. Destroygui.Font = Enum.Font.SourceSans
  258. Destroygui.Text = "Remove Gui"
  259. Destroygui.TextColor3 = Color3.fromRGB(0, 0, 0)
  260. Destroygui.TextScaled = true
  261. Destroygui.TextSize = 14.000
  262. Destroygui.TextWrapped = true
  263. Destroygui.MouseButton1Click:Connect(function()
  264. Hitboxv5:Destroy()
  265. end)
  266.  
  267. HO.Name = "HO"
  268. HO.Parent = Frame
  269. HO.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  270. HO.BorderSizePixel = 0
  271. HO.Position = UDim2.new(0.24742268, 0, 0.0520000011, 0)
  272. HO.Size = UDim2.new(0, 280, 0, 223)
  273.  
  274. Rejoin.Name = "Rejoin"
  275. Rejoin.Parent = HO
  276. Rejoin.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  277. Rejoin.BorderSizePixel = 0
  278. Rejoin.Position = UDim2.new(0, 0, 0.775784731, 0)
  279. Rejoin.Size = UDim2.new(0, 280, 0, 50)
  280. Rejoin.Font = Enum.Font.SourceSans
  281. Rejoin.Text = "Rejoin"
  282. Rejoin.TextColor3 = Color3.fromRGB(255, 255, 255)
  283. Rejoin.TextScaled = true
  284. Rejoin.TextSize = 14.000
  285. Rejoin.TextWrapped = true
  286. Rejoin.MouseButton1Click:Connect(function()
  287. game:GetService("TeleportService"):Teleport(game.PlaceId)
  288. end)
  289.  
  290. Good.Name = "Good"
  291. Good.Parent = HO
  292. Good.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  293. Good.BorderSizePixel = 0
  294. Good.Size = UDim2.new(0, 280, 0, 81)
  295. Good.Font = Enum.Font.SourceSans
  296. Good.Text = "Thanks for using Hitbox V5"
  297. Good.TextColor3 = Color3.fromRGB(255, 255, 255)
  298. Good.TextScaled = true
  299. Good.TextSize = 14.000
  300. Good.TextWrapped = true
  301.  
  302. Name1.Name = "Name"
  303. Name1.Parent = HO
  304. Name1.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  305. Name1.BorderSizePixel = 0
  306. Name1.Position = UDim2.new(0, 0, 0.363228709, 0)
  307. Name1.Size = UDim2.new(0, 280, 0, 53)
  308. Name1.Font = Enum.Font.SourceSans
  309. Name1.Text = ""
  310. Name1.TextColor3 = Color3.fromRGB(255, 255, 255)
  311. Name1.TextScaled = true
  312. Name1.TextSize = 14.000
  313. Name1.TextWrapped = true
  314. pcall(function()
  315. Name1.Text = game.Players:GetPlayerFromCharacter(game.Workspace.CurrentCamera.CameraSubject.Parent).Name
  316. end)
  317.  
  318. CC.Name = "CC"
  319. CC.Parent = Frame
  320. CC.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  321. CC.BorderSizePixel = 0
  322. CC.Position = UDim2.new(0, 0, -0.124000005, 0)
  323. CC.Size = UDim2.new(0, 388, 0, 31)
  324. CC.Font = Enum.Font.SourceSans
  325. CC.Text = "Script Made by WarriorRoberr"
  326. CC.TextColor3 = Color3.fromRGB(0, 0, 0)
  327. CC.TextScaled = true
  328. CC.TextSize = 14.000
  329. CC.TextWrapped = true
  330.  
  331. Hit.Name = "Hit"
  332. Hit.Parent = Frame
  333. Hit.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  334. Hit.BorderSizePixel = 0
  335. Hit.Position = UDim2.new(0.24742268, 0, 0.0520000011, 0)
  336. Hit.Size = UDim2.new(0, 280, 0, 223)
  337. Hit.Visible = false
  338.  
  339. Hitb.Name = "Hitb"
  340. Hitb.Parent = Hit
  341. Hitb.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  342. Hitb.Position = UDim2.new(0.0821428597, 0, 0.125560537, 0)
  343. Hitb.Size = UDim2.new(0, 43, 0, 43)
  344. Hitb.Font = Enum.Font.SourceSans
  345. Hitb.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  346. Hitb.PlaceholderText = "Hitbox"
  347. Hitb.Text = ""
  348. Hitb.TextColor3 = Color3.fromRGB(0, 0, 0)
  349. Hitb.TextSize = 14.000
  350.  
  351. SI.Name = "SI"
  352. SI.Parent = Hit
  353. SI.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  354. SI.BorderSizePixel = 0
  355. SI.Position = UDim2.new(0.0821428597, 0, 0, 0)
  356. SI.Size = UDim2.new(0, 43, 0, 28)
  357. SI.Font = Enum.Font.SourceSans
  358. SI.Text = "Size:"
  359. SI.TextColor3 = Color3.fromRGB(255, 255, 255)
  360. SI.TextSize = 14.000
  361.  
  362. Trans.Name = "Trans"
  363. Trans.Parent = Hit
  364. Trans.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  365. Trans.Position = UDim2.new(0.349999994, 0, 0.125560537, 0)
  366. Trans.Size = UDim2.new(0, 43, 0, 43)
  367. Trans.Font = Enum.Font.SourceSans
  368. Trans.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  369. Trans.PlaceholderText = "Trans"
  370. Trans.Text = ""
  371. Trans.TextColor3 = Color3.fromRGB(0, 0, 0)
  372. Trans.TextSize = 14.000
  373.  
  374. Tran.Name = "Tran"
  375. Tran.Parent = Hit
  376. Tran.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  377. Tran.BorderSizePixel = 0
  378. Tran.Position = UDim2.new(0.349999994, 0, 0, 0)
  379. Tran.Size = UDim2.new(0, 43, 0, 28)
  380. Tran.Font = Enum.Font.SourceSans
  381. Tran.Text = "Transparency:"
  382. Tran.TextColor3 = Color3.fromRGB(255, 255, 255)
  383. Tran.TextSize = 14.000
  384.  
  385. Matt.Name = "Matt"
  386. Matt.Parent = Hit
  387. Matt.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  388. Matt.BorderSizePixel = 0
  389. Matt.Position = UDim2.new(0.614285707, 0, 0, 0)
  390. Matt.Size = UDim2.new(0, 43, 0, 28)
  391. Matt.Font = Enum.Font.SourceSans
  392. Matt.Text = "Material:"
  393. Matt.TextColor3 = Color3.fromRGB(255, 255, 255)
  394. Matt.TextSize = 14.000
  395.  
  396. Mat.Name = "Mat"
  397. Mat.Parent = Hit
  398. Mat.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  399. Mat.Position = UDim2.new(0.614285707, 0, 0.121076226, 0)
  400. Mat.Size = UDim2.new(0, 43, 0, 43)
  401. Mat.Font = Enum.Font.SourceSans
  402. Mat.Text = "Material"
  403. Mat.TextColor3 = Color3.fromRGB(0, 0, 0)
  404. Mat.TextSize = 14.000
  405. Mat.MouseButton1Click:Connect(function()
  406. ScrollingFrame_2.Visible = true
  407. end)
  408.  
  409. ScrollingFrame_2.Parent = Hit
  410. ScrollingFrame_2.Active = true
  411. ScrollingFrame_2.BackgroundColor3 = Color3.fromRGB(136, 136, 136)
  412. ScrollingFrame_2.Position = UDim2.new(0.870108962, 0, 0.14172487, 0)
  413. ScrollingFrame_2.Size = UDim2.new(0, 94, 0, 131)
  414. ScrollingFrame_2.Visible = false
  415. ScrollingFrame_2.BottomImage = ""
  416. ScrollingFrame_2.MidImage = ""
  417. ScrollingFrame_2.ScrollBarThickness = 0
  418. ScrollingFrame_2.TopImage = ""
  419.  
  420. Brick.Name = "Brick"
  421. Brick.Parent = ScrollingFrame_2
  422. Brick.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  423. Brick.Position = UDim2.new(0.0701754987, 0, 0.0177102201, 0)
  424. Brick.Size = UDim2.new(0, 80, 0, 27)
  425. Brick.Font = Enum.Font.SourceSans
  426. Brick.Text = "Brick"
  427. Brick.TextColor3 = Color3.fromRGB(255, 255, 255)
  428. Brick.TextScaled = true
  429. Brick.TextSize = 14.000
  430. Brick.TextWrapped = true
  431. Brick.MouseButton1Click:Connect(function()
  432. ScrollingFrame_2.Visible = false
  433. Mat.Text = "Brick"
  434. end)
  435.  
  436. Neon.Name = "Neon"
  437. Neon.Parent = ScrollingFrame_2
  438. Neon.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  439. Neon.Position = UDim2.new(0.0701754987, 0, 0.0939434022, 0)
  440. Neon.Size = UDim2.new(0, 80, 0, 27)
  441. Neon.Font = Enum.Font.SourceSans
  442. Neon.Text = "Neon"
  443. Neon.TextColor3 = Color3.fromRGB(255, 255, 255)
  444. Neon.TextScaled = true
  445. Neon.TextSize = 14.000
  446. Neon.TextWrapped = true
  447. Neon.MouseButton1Click:Connect(function()
  448. Mat.Text = "Neon"
  449. ScrollingFrame_2.Visible = false
  450. end)
  451.  
  452. Wood.Name = "Wood"
  453. Wood.Parent = ScrollingFrame_2
  454. Wood.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  455. Wood.Position = UDim2.new(0.0701754987, 0, 0.170176595, 0)
  456. Wood.Size = UDim2.new(0, 80, 0, 27)
  457. Wood.Font = Enum.Font.SourceSans
  458. Wood.Text = "Wood"
  459. Wood.TextColor3 = Color3.fromRGB(255, 255, 255)
  460. Wood.TextScaled = true
  461. Wood.TextSize = 14.000
  462. Wood.TextWrapped = true
  463. Wood.MouseButton1Click:Connect(function()
  464. Mat.Text = "Wood"
  465. ScrollingFrame_2.Visible = false
  466. end)
  467.  
  468. Red.Name = "Red"
  469. Red.Parent = Hit
  470. Red.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  471. Red.Position = UDim2.new(0.0821428597, 0, 0.461883426, 0)
  472. Red.Size = UDim2.new(0, 43, 0, 43)
  473. Red.Font = Enum.Font.SourceSans
  474. Red.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  475. Red.PlaceholderText = "Number"
  476. Red.Text = ""
  477. Red.TextColor3 = Color3.fromRGB(0, 0, 0)
  478. Red.TextSize = 14.000
  479.  
  480. R.Name = "R"
  481. R.Parent = Hit
  482. R.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  483. R.BorderSizePixel = 0
  484. R.Position = UDim2.new(0.0821428597, 0, 0.336322874, 0)
  485. R.Size = UDim2.new(0, 43, 0, 28)
  486. R.Font = Enum.Font.SourceSans
  487. R.Text = "Red"
  488. R.TextColor3 = Color3.fromRGB(255, 0, 0)
  489. R.TextSize = 14.000
  490.  
  491. Green.Name = "Green"
  492. Green.Parent = Hit
  493. Green.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  494. Green.Position = UDim2.new(0.349999994, 0, 0.461883426, 0)
  495. Green.Size = UDim2.new(0, 43, 0, 43)
  496. Green.Font = Enum.Font.SourceSans
  497. Green.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  498. Green.PlaceholderText = "Number"
  499. Green.Text = ""
  500. Green.TextColor3 = Color3.fromRGB(0, 0, 0)
  501. Green.TextSize = 14.000
  502.  
  503. G.Name = "G"
  504. G.Parent = Hit
  505. G.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  506. G.BorderSizePixel = 0
  507. G.Position = UDim2.new(0.349999994, 0, 0.336322874, 0)
  508. G.Size = UDim2.new(0, 43, 0, 28)
  509. G.Font = Enum.Font.SourceSans
  510. G.Text = "Green"
  511. G.TextColor3 = Color3.fromRGB(0, 255, 0)
  512. G.TextSize = 14.000
  513.  
  514. Blue.Name = "Blue"
  515. Blue.Parent = Hit
  516. Blue.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  517. Blue.Position = UDim2.new(0.614285707, 0, 0.461883426, 0)
  518. Blue.Size = UDim2.new(0, 43, 0, 43)
  519. Blue.Font = Enum.Font.SourceSans
  520. Blue.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  521. Blue.PlaceholderText = "Number"
  522. Blue.Text = ""
  523. Blue.TextColor3 = Color3.fromRGB(0, 0, 0)
  524. Blue.TextSize = 14.000
  525.  
  526. B.Name = "B"
  527. B.Parent = Hit
  528. B.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  529. B.BorderSizePixel = 0
  530. B.Position = UDim2.new(0.614285707, 0, 0.336322874, 0)
  531. B.Size = UDim2.new(0, 43, 0, 28)
  532. B.Font = Enum.Font.SourceSans
  533. B.Text = "Blue"
  534. B.TextColor3 = Color3.fromRGB(0, 0, 255)
  535. B.TextSize = 14.000
  536.  
  537. ONoff.Name = "ON/off"
  538. ONoff.Parent = Hit
  539. ONoff.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  540. ONoff.Position = UDim2.new(0.764491737, 0, 0.775784731, 0)
  541. ONoff.Size = UDim2.new(0, 55, 0, 43)
  542. ONoff.Font = Enum.Font.SourceSans
  543. ONoff.Text = "Execute"
  544. ONoff.TextColor3 = Color3.fromRGB(255, 0, 0)
  545. ONoff.TextScaled = true
  546. ONoff.TextSize = 14.000
  547. ONoff.TextWrapped = true
  548. ONoff.MouseButton1Click:Connect(function()
  549. _G.HeadSize = Hitb.Text
  550. _G.Disabled = true
  551.  
  552. game:GetService('RunService').RenderStepped:connect(function()
  553. if _G.Disabled then
  554. for i,v in next, game:GetService('Players'):GetPlayers() do
  555. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  556. pcall(function()
  557. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  558. v.Character.HumanoidRootPart.Transparency = Trans.Text
  559. v.Character.HumanoidRootPart.Color = Color3.new(Red.Text,Green.Text,Blue.Text)
  560. v.Character.HumanoidRootPart.Material = Mat.Text
  561. v.Character.HumanoidRootPart.CanCollide = false
  562. end)
  563. end
  564. end
  565. end
  566. end)
  567. end)
  568.  
  569. Pla.Name = "Pla"
  570. Pla.Parent = Frame
  571. Pla.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  572. Pla.BorderSizePixel = 0
  573. Pla.Position = UDim2.new(0.24742268, 0, 0.0520000011, 0)
  574. Pla.Size = UDim2.new(0, 280, 0, 223)
  575. Pla.Visible = false
  576.  
  577. Hitb1.Name = "Hitb1"
  578. Hitb1.Parent = Pla
  579. Hitb1.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  580. Hitb1.Position = UDim2.new(0.0821428597, 0, 0.125560537, 0)
  581. Hitb1.Size = UDim2.new(0, 43, 0, 43)
  582. Hitb1.Font = Enum.Font.SourceSans
  583. Hitb1.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  584. Hitb1.PlaceholderText = "Hitbox"
  585. Hitb1.Text = ""
  586. Hitb1.TextColor3 = Color3.fromRGB(0, 0, 0)
  587. Hitb1.TextSize = 14.000
  588.  
  589. SI1.Name = "SI1"
  590. SI1.Parent = Pla
  591. SI1.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  592. SI1.BorderSizePixel = 0
  593. SI1.Position = UDim2.new(0.0821428597, 0, 0, 0)
  594. SI1.Size = UDim2.new(0, 43, 0, 28)
  595. SI1.Font = Enum.Font.SourceSans
  596. SI1.Text = "Size:"
  597. SI1.TextColor3 = Color3.fromRGB(255, 255, 255)
  598. SI1.TextSize = 14.000
  599.  
  600. Trans1.Name = "Trans1"
  601. Trans1.Parent = Pla
  602. Trans1.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  603. Trans1.Position = UDim2.new(0.349999994, 0, 0.125560537, 0)
  604. Trans1.Size = UDim2.new(0, 43, 0, 43)
  605. Trans1.Font = Enum.Font.SourceSans
  606. Trans1.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  607. Trans1.PlaceholderText = "Trans"
  608. Trans1.Text = ""
  609. Trans1.TextColor3 = Color3.fromRGB(0, 0, 0)
  610. Trans1.TextSize = 14.000
  611.  
  612. Tran1.Name = "Tran1"
  613. Tran1.Parent = Pla
  614. Tran1.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  615. Tran1.BorderSizePixel = 0
  616. Tran1.Position = UDim2.new(0.349999994, 0, 0, 0)
  617. Tran1.Size = UDim2.new(0, 43, 0, 28)
  618. Tran1.Font = Enum.Font.SourceSans
  619. Tran1.Text = "Transparency:"
  620. Tran1.TextColor3 = Color3.fromRGB(255, 255, 255)
  621. Tran1.TextSize = 14.000
  622.  
  623. Matt1.Name = "Matt1"
  624. Matt1.Parent = Pla
  625. Matt1.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  626. Matt1.BorderSizePixel = 0
  627. Matt1.Position = UDim2.new(0.614285707, 0, 0, 0)
  628. Matt1.Size = UDim2.new(0, 43, 0, 28)
  629. Matt1.Font = Enum.Font.SourceSans
  630. Matt1.Text = "Material:"
  631. Matt1.TextColor3 = Color3.fromRGB(255, 255, 255)
  632. Matt1.TextSize = 14.000
  633.  
  634. Mat1.Name = "Mat1"
  635. Mat1.Parent = Pla
  636. Mat1.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  637. Mat1.Position = UDim2.new(0.614285707, 0, 0.121076226, 0)
  638. Mat1.Size = UDim2.new(0, 43, 0, 43)
  639. Mat1.Font = Enum.Font.SourceSans
  640. Mat1.Text = "Material"
  641. Mat1.TextColor3 = Color3.fromRGB(0, 0, 0)
  642. Mat1.TextSize = 14.000
  643. Mat1.MouseButton1Click:Connect(function()
  644. ScrollingFrame_3.Visible = true
  645. end)
  646.  
  647. ScrollingFrame_3.Parent = Pla
  648. ScrollingFrame_3.Active = true
  649. ScrollingFrame_3.BackgroundColor3 = Color3.fromRGB(136, 136, 136)
  650. ScrollingFrame_3.Position = UDim2.new(0.870108962, 0, 0.14172487, 0)
  651. ScrollingFrame_3.Size = UDim2.new(0, 94, 0, 131)
  652. ScrollingFrame_3.Visible = false
  653. ScrollingFrame_3.BottomImage = ""
  654. ScrollingFrame_3.MidImage = ""
  655. ScrollingFrame_3.ScrollBarThickness = 0
  656. ScrollingFrame_3.TopImage = ""
  657.  
  658. Brick_2.Name = "Brick"
  659. Brick_2.Parent = ScrollingFrame_3
  660. Brick_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  661. Brick_2.Position = UDim2.new(0.0701754987, 0, 0.0177102201, 0)
  662. Brick_2.Size = UDim2.new(0, 80, 0, 27)
  663. Brick_2.Font = Enum.Font.SourceSans
  664. Brick_2.Text = "Brick"
  665. Brick_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  666. Brick_2.TextScaled = true
  667. Brick_2.TextSize = 14.000
  668. Brick_2.TextWrapped = true
  669. Brick_2.MouseButton1Click:Connect(function()
  670. Mat1.Text = "Brick"
  671. ScrollingFrame_3.Visible = false
  672. end)
  673.  
  674. Neon_2.Name = "Neon"
  675. Neon_2.Parent = ScrollingFrame_3
  676. Neon_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  677. Neon_2.Position = UDim2.new(0.0701754987, 0, 0.0939434022, 0)
  678. Neon_2.Size = UDim2.new(0, 80, 0, 27)
  679. Neon_2.Font = Enum.Font.SourceSans
  680. Neon_2.Text = "Neon"
  681. Neon_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  682. Neon_2.TextScaled = true
  683. Neon_2.TextSize = 14.000
  684. Neon_2.TextWrapped = true
  685. Neon_2.MouseButton1Click:Connect(function()
  686. Mat1.Text = "Neon"
  687. ScrollingFrame_3.Visible = false
  688. end)
  689.  
  690. Wood_2.Name = "Wood"
  691. Wood_2.Parent = ScrollingFrame_3
  692. Wood_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  693. Wood_2.Position = UDim2.new(0.0701754987, 0, 0.170176595, 0)
  694. Wood_2.Size = UDim2.new(0, 80, 0, 27)
  695. Wood_2.Font = Enum.Font.SourceSans
  696. Wood_2.Text = "Wood"
  697. Wood_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  698. Wood_2.TextScaled = true
  699. Wood_2.TextSize = 14.000
  700. Wood_2.TextWrapped = true
  701. Wood_2.MouseButton1Click:Connect(function()
  702. Mat1.Text = "Wood"
  703. ScrollingFrame_3.Visible = false
  704. end)
  705.  
  706. red1.Name = "red1"
  707. red1.Parent = Pla
  708. red1.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  709. red1.Position = UDim2.new(0.0821428597, 0, 0.461883426, 0)
  710. red1.Size = UDim2.new(0, 43, 0, 43)
  711. red1.Font = Enum.Font.SourceSans
  712. red1.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  713. red1.PlaceholderText = "Number"
  714. red1.Text = ""
  715. red1.TextColor3 = Color3.fromRGB(0, 0, 0)
  716. red1.TextSize = 14.000
  717.  
  718. R1.Name = "R1"
  719. R1.Parent = Pla
  720. R1.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  721. R1.BorderSizePixel = 0
  722. R1.Position = UDim2.new(0.0821428597, 0, 0.336322874, 0)
  723. R1.Size = UDim2.new(0, 43, 0, 28)
  724. R1.Font = Enum.Font.SourceSans
  725. R1.Text = "Red"
  726. R1.TextColor3 = Color3.fromRGB(255, 0, 0)
  727. R1.TextSize = 14.000
  728.  
  729. Green1.Name = "Green1"
  730. Green1.Parent = Pla
  731. Green1.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  732. Green1.Position = UDim2.new(0.349999994, 0, 0.461883426, 0)
  733. Green1.Size = UDim2.new(0, 43, 0, 43)
  734. Green1.Font = Enum.Font.SourceSans
  735. Green1.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  736. Green1.PlaceholderText = "Number"
  737. Green1.Text = ""
  738. Green1.TextColor3 = Color3.fromRGB(0, 0, 0)
  739. Green1.TextSize = 14.000
  740.  
  741. G1.Name = "G1"
  742. G1.Parent = Pla
  743. G1.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  744. G1.BorderSizePixel = 0
  745. G1.Position = UDim2.new(0.349999994, 0, 0.336322874, 0)
  746. G1.Size = UDim2.new(0, 43, 0, 28)
  747. G1.Font = Enum.Font.SourceSans
  748. G1.Text = "Green"
  749. G1.TextColor3 = Color3.fromRGB(0, 255, 0)
  750. G1.TextSize = 14.000
  751.  
  752. Blue1.Name = "Blue1"
  753. Blue1.Parent = Pla
  754. Blue1.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  755. Blue1.Position = UDim2.new(0.614285707, 0, 0.461883426, 0)
  756. Blue1.Size = UDim2.new(0, 43, 0, 43)
  757. Blue1.Font = Enum.Font.SourceSans
  758. Blue1.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  759. Blue1.PlaceholderText = "Number"
  760. Blue1.Text = ""
  761. Blue1.TextColor3 = Color3.fromRGB(0, 0, 0)
  762. Blue1.TextSize = 14.000
  763.  
  764. B1.Name = "B1"
  765. B1.Parent = Pla
  766. B1.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  767. B1.BorderSizePixel = 0
  768. B1.Position = UDim2.new(0.614285707, 0, 0.336322874, 0)
  769. B1.Size = UDim2.new(0, 43, 0, 28)
  770. B1.Font = Enum.Font.SourceSans
  771. B1.Text = "Blue"
  772. B1.TextColor3 = Color3.fromRGB(0, 0, 255)
  773. B1.TextSize = 14.000
  774.  
  775. ONoff1.Name = "ON/off1"
  776. ONoff1.Parent = Pla
  777. ONoff1.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  778. ONoff1.Position = UDim2.new(0.764491737, 0, 0.775784731, 0)
  779. ONoff1.Size = UDim2.new(0, 55, 0, 43)
  780. ONoff1.Font = Enum.Font.SourceSans
  781. ONoff1.Text = "Execute"
  782. ONoff1.TextColor3 = Color3.fromRGB(255, 0, 0)
  783. ONoff1.TextScaled = true
  784. ONoff1.TextSize = 14.000
  785. ONoff1.TextWrapped = true
  786. ONoff1.MouseButton1Click:Connect(function()
  787. local Target1 = gplr(Target.Text)
  788. if Target1[1] then
  789. Target1 = Target1[1]
  790. _G.HeadSize1 = Hitb1.Text
  791. _G.Disabled1 = true
  792.  
  793. game:GetService('RunService').RenderStepped:connect(function()
  794. if _G.Disabled1 then
  795. pcall(function()
  796. Target1.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize1,_G.HeadSize1,_G.HeadSize1)
  797. Target1.Character.HumanoidRootPart.Transparency = Trans1.Text
  798. Target1.Character.HumanoidRootPart.Color = Color3.new(red1.Text,Green1.Text,Blue1.Text)
  799. Target1.Character.HumanoidRootPart.Material = Mat1.Text
  800. Target1.Character.HumanoidRootPart.CanCollide = false
  801. end)
  802. end
  803. end)
  804. end
  805. end)
  806.  
  807. Target.Name = "Target"
  808. Target.Parent = Pla
  809. Target.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  810. Target.Position = UDim2.new(0.134787098, 0, 0.775784731, 0)
  811. Target.Size = UDim2.new(0, 160, 0, 43)
  812. Target.Font = Enum.Font.SourceSans
  813. Target.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  814. Target.PlaceholderText = "Player name here"
  815. Target.Text = ""
  816. Target.TextColor3 = Color3.fromRGB(0, 0, 0)
  817. Target.TextScaled = true
  818. Target.TextSize = 14.000
  819. Target.TextWrapped = true
  820.  
  821. Team.Name = "Team"
  822. Team.Parent = Frame
  823. Team.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  824. Team.BorderSizePixel = 0
  825. Team.Position = UDim2.new(0.24742268, 0, 0.0520000011, 0)
  826. Team.Size = UDim2.new(0, 280, 0, 223)
  827. Team.Visible = false
  828.  
  829. Hitb2.Name = "Hitb2"
  830. Hitb2.Parent = Team
  831. Hitb2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  832. Hitb2.Position = UDim2.new(0.0821428597, 0, 0.125560537, 0)
  833. Hitb2.Size = UDim2.new(0, 43, 0, 43)
  834. Hitb2.Font = Enum.Font.SourceSans
  835. Hitb2.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  836. Hitb2.PlaceholderText = "Hitbox"
  837. Hitb2.Text = ""
  838. Hitb2.TextColor3 = Color3.fromRGB(0, 0, 0)
  839. Hitb2.TextSize = 14.000
  840.  
  841. SI2.Name = "SI2"
  842. SI2.Parent = Team
  843. SI2.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  844. SI2.BorderSizePixel = 0
  845. SI2.Position = UDim2.new(0.0821428597, 0, 0, 0)
  846. SI2.Size = UDim2.new(0, 43, 0, 28)
  847. SI2.Font = Enum.Font.SourceSans
  848. SI2.Text = "Size:"
  849. SI2.TextColor3 = Color3.fromRGB(255, 255, 255)
  850. SI2.TextSize = 14.000
  851.  
  852. Trans2.Name = "Trans2"
  853. Trans2.Parent = Team
  854. Trans2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  855. Trans2.Position = UDim2.new(0.349999994, 0, 0.125560537, 0)
  856. Trans2.Size = UDim2.new(0, 43, 0, 43)
  857. Trans2.Font = Enum.Font.SourceSans
  858. Trans2.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  859. Trans2.PlaceholderText = "Trans"
  860. Trans2.Text = ""
  861. Trans2.TextColor3 = Color3.fromRGB(0, 0, 0)
  862. Trans2.TextSize = 14.000
  863.  
  864. Tran2.Name = "Tran2"
  865. Tran2.Parent = Team
  866. Tran2.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  867. Tran2.BorderSizePixel = 0
  868. Tran2.Position = UDim2.new(0.349999994, 0, 0, 0)
  869. Tran2.Size = UDim2.new(0, 43, 0, 28)
  870. Tran2.Font = Enum.Font.SourceSans
  871. Tran2.Text = "Transparency:"
  872. Tran2.TextColor3 = Color3.fromRGB(255, 255, 255)
  873. Tran2.TextSize = 14.000
  874.  
  875. Matt2.Name = "Matt2"
  876. Matt2.Parent = Team
  877. Matt2.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  878. Matt2.BorderSizePixel = 0
  879. Matt2.Position = UDim2.new(0.614285707, 0, 0, 0)
  880. Matt2.Size = UDim2.new(0, 43, 0, 28)
  881. Matt2.Font = Enum.Font.SourceSans
  882. Matt2.Text = "Material:"
  883. Matt2.TextColor3 = Color3.fromRGB(255, 255, 255)
  884. Matt2.TextSize = 14.000
  885.  
  886. Mat2.Name = "Mat2"
  887. Mat2.Parent = Team
  888. Mat2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  889. Mat2.Position = UDim2.new(0.614285707, 0, 0.121076226, 0)
  890. Mat2.Size = UDim2.new(0, 43, 0, 43)
  891. Mat2.Font = Enum.Font.SourceSans
  892. Mat2.Text = "Material"
  893. Mat2.TextColor3 = Color3.fromRGB(0, 0, 0)
  894. Mat2.TextSize = 14.000
  895. Mat2.MouseButton1Click:Connect(function()
  896. ScrollingFrame_4.Visible = true
  897. end)
  898.  
  899.  
  900. ScrollingFrame_4.Parent = Team
  901. ScrollingFrame_4.Active = true
  902. ScrollingFrame_4.BackgroundColor3 = Color3.fromRGB(136, 136, 136)
  903. ScrollingFrame_4.Position = UDim2.new(0.870108962, 0, 0.14172487, 0)
  904. ScrollingFrame_4.Size = UDim2.new(0, 94, 0, 131)
  905. ScrollingFrame_4.Visible = false
  906. ScrollingFrame_4.BottomImage = ""
  907. ScrollingFrame_4.MidImage = ""
  908. ScrollingFrame_4.ScrollBarThickness = 0
  909. ScrollingFrame_4.TopImage = ""
  910.  
  911. Brick_3.Name = "Brick"
  912. Brick_3.Parent = ScrollingFrame_4
  913. Brick_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  914. Brick_3.Position = UDim2.new(0.0701754987, 0, 0.0177102201, 0)
  915. Brick_3.Size = UDim2.new(0, 80, 0, 27)
  916. Brick_3.Font = Enum.Font.SourceSans
  917. Brick_3.Text = "Brick"
  918. Brick_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  919. Brick_3.TextScaled = true
  920. Brick_3.TextSize = 14.000
  921. Brick_3.TextWrapped = true
  922. Brick_3.MouseButton1Click:Connect(function()
  923. Mat2.Text = "Brick"
  924. ScrollingFrame_4.Visible = false
  925. end)
  926.  
  927. Neon_3.Name = "Neon"
  928. Neon_3.Parent = ScrollingFrame_4
  929. Neon_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  930. Neon_3.Position = UDim2.new(0.0701754987, 0, 0.0939434022, 0)
  931. Neon_3.Size = UDim2.new(0, 80, 0, 27)
  932. Neon_3.Font = Enum.Font.SourceSans
  933. Neon_3.Text = "Neon"
  934. Neon_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  935. Neon_3.TextScaled = true
  936. Neon_3.TextSize = 14.000
  937. Neon_3.TextWrapped = true
  938. Neon_3.MouseButton1Click:Connect(function()
  939. Mat2.Text = "Neon"
  940. ScrollingFrame_4.Visible = false
  941. end)
  942.  
  943. Wood_3.Name = "Wood"
  944. Wood_3.Parent = ScrollingFrame_4
  945. Wood_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  946. Wood_3.Position = UDim2.new(0.0701754987, 0, 0.170176595, 0)
  947. Wood_3.Size = UDim2.new(0, 80, 0, 27)
  948. Wood_3.Font = Enum.Font.SourceSans
  949. Wood_3.Text = "Wood"
  950. Wood_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  951. Wood_3.TextScaled = true
  952. Wood_3.TextSize = 14.000
  953. Wood_3.TextWrapped = true
  954. Wood_3.MouseButton1Click:Connect(function()
  955. Mat2.Text = "Wood"
  956. ScrollingFrame_4.Visible = false
  957. end)
  958.  
  959. Red2.Name = "Red2"
  960. Red2.Parent = Team
  961. Red2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  962. Red2.Position = UDim2.new(0.0821428597, 0, 0.461883426, 0)
  963. Red2.Size = UDim2.new(0, 43, 0, 43)
  964. Red2.Font = Enum.Font.SourceSans
  965. Red2.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  966. Red2.PlaceholderText = "Number"
  967. Red2.Text = ""
  968. Red2.TextColor3 = Color3.fromRGB(0, 0, 0)
  969. Red2.TextSize = 14.000
  970.  
  971. R2.Name = "R2"
  972. R2.Parent = Team
  973. R2.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  974. R2.BorderSizePixel = 0
  975. R2.Position = UDim2.new(0.0821428597, 0, 0.336322874, 0)
  976. R2.Size = UDim2.new(0, 43, 0, 28)
  977. R2.Font = Enum.Font.SourceSans
  978. R2.Text = "Red"
  979. R2.TextColor3 = Color3.fromRGB(255, 0, 0)
  980. R2.TextSize = 14.000
  981.  
  982. Green2.Name = "Green2"
  983. Green2.Parent = Team
  984. Green2.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  985. Green2.Position = UDim2.new(0.349999994, 0, 0.461883426, 0)
  986. Green2.Size = UDim2.new(0, 43, 0, 43)
  987. Green2.Font = Enum.Font.SourceSans
  988. Green2.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  989. Green2.PlaceholderText = "Number"
  990. Green2.Text = ""
  991. Green2.TextColor3 = Color3.fromRGB(0, 0, 0)
  992. Green2.TextSize = 14.000
  993.  
  994. G2.Name = "G2"
  995. G2.Parent = Team
  996. G2.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  997. G2.BorderSizePixel = 0
  998. G2.Position = UDim2.new(0.349999994, 0, 0.336322874, 0)
  999. G2.Size = UDim2.new(0, 43, 0, 28)
  1000. G2.Font = Enum.Font.SourceSans
  1001. G2.Text = "Green"
  1002. G2.TextColor3 = Color3.fromRGB(0, 255, 0)
  1003. G2.TextSize = 14.000
  1004.  
  1005. blue2.Name = "blue2"
  1006. blue2.Parent = Team
  1007. blue2.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  1008. blue2.Position = UDim2.new(0.614285707, 0, 0.461883426, 0)
  1009. blue2.Size = UDim2.new(0, 43, 0, 43)
  1010. blue2.Font = Enum.Font.SourceSans
  1011. blue2.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1012. blue2.PlaceholderText = "Number"
  1013. blue2.Text = ""
  1014. blue2.TextColor3 = Color3.fromRGB(0, 0, 0)
  1015. blue2.TextSize = 14.000
  1016.  
  1017. B2.Name = "B2"
  1018. B2.Parent = Team
  1019. B2.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  1020. B2.BorderSizePixel = 0
  1021. B2.Position = UDim2.new(0.614285707, 0, 0.336322874, 0)
  1022. B2.Size = UDim2.new(0, 43, 0, 28)
  1023. B2.Font = Enum.Font.SourceSans
  1024. B2.Text = "Blue"
  1025. B2.TextColor3 = Color3.fromRGB(0, 0, 255)
  1026. B2.TextSize = 14.000
  1027.  
  1028. ONoff2.Name = "ON/off2"
  1029. ONoff2.Parent = Team
  1030. ONoff2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1031. ONoff2.Position = UDim2.new(0.764491737, 0, 0.775784731, 0)
  1032. ONoff2.Size = UDim2.new(0, 55, 0, 43)
  1033. ONoff2.Font = Enum.Font.SourceSans
  1034. ONoff2.Text = "Execute"
  1035. ONoff2.TextColor3 = Color3.fromRGB(255, 0, 0)
  1036. ONoff2.TextScaled = true
  1037. ONoff2.TextSize = 14.000
  1038. ONoff2.TextWrapped = true
  1039.  
  1040. TeamTarget.Name = "Team Target"
  1041. TeamTarget.Parent = Team
  1042. TeamTarget.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1043. TeamTarget.Position = UDim2.new(0.134787098, 0, 0.775784731, 0)
  1044. TeamTarget.Size = UDim2.new(0, 160, 0, 43)
  1045. TeamTarget.Font = Enum.Font.SourceSans
  1046. TeamTarget.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1047. TeamTarget.PlaceholderText = "Team name here"
  1048. TeamTarget.Text = ""
  1049. TeamTarget.TextColor3 = Color3.fromRGB(0, 0, 0)
  1050. TeamTarget.TextScaled = true
  1051. TeamTarget.TextSize = 14.000
  1052. TeamTarget.TextWrapped = true
  1053.  
  1054. Close.Name = "Close"
  1055. Close.Parent = drag
  1056. Close.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  1057. Close.BorderSizePixel = 0
  1058. Close.Position = UDim2.new(0.917525709, 0, -0.0221935511, 0)
  1059. Close.Size = UDim2.new(0, 31, 0, 31)
  1060. Close.Font = Enum.Font.SourceSans
  1061. Close.Text = "X"
  1062. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  1063. Close.TextScaled = true
  1064. Close.TextSize = 14.000
  1065. Close.TextWrapped = true
  1066. Close.MouseButton1Click:Connect(function()
  1067. drag.Visible = false
  1068. Open.Visible = true
  1069. end)
  1070.  
  1071. Minimize.Name = "Mini mize"
  1072. Minimize.Parent = drag
  1073. Minimize.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  1074. Minimize.BorderSizePixel = 0
  1075. Minimize.Position = UDim2.new(0.836787581, 0, -0.0322580636, 0)
  1076. Minimize.Size = UDim2.new(0, 31, 0, 31)
  1077. Minimize.Font = Enum.Font.SourceSans
  1078. Minimize.Text = "-"
  1079. Minimize.TextColor3 = Color3.fromRGB(255, 255, 255)
  1080. Minimize.TextScaled = true
  1081. Minimize.TextSize = 14.000
  1082. Minimize.TextWrapped = true
  1083. function Mini()
  1084. if Minimize.Text == "-" then
  1085. Minimize.Text = "+"
  1086. Frame.Visible = false
  1087. elseif Minimize.Text == "+" then
  1088. Minimize.Text = "-"
  1089. Frame.Visible = true
  1090. end
  1091. end
  1092. Minimize.MouseButton1Click:Connect(Mini)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement