Advertisement
Sploity

Bad Business K_Aura

Jul 13th, 2020
2,243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.63 KB | None | 0 0
  1. nw = require(game:GetService("ReplicatedStorage").Tortoiseshell)
  2. me = game.Players.LocalPlayer
  3. c = nw.Characters:GetCharacter(me)
  4. rd = game:GetService("Workspace").Ragdolls
  5. ts = game:GetService("TweenService")
  6. r = game.ReplicatedStorage
  7. ev = Vector3.new(0,0,0)
  8.  
  9. for i,v in pairs(r:GetDescendants()) do
  10. if v.Name == 'Item_Melee' and v:IsA('RemoteEvent') then
  11. re = v
  12. end
  13. end
  14.  
  15. for i,v in pairs(r:GetDescendants()) do
  16. if v.Name == 'Item' and v:IsA('RemoteEvent') then
  17. ire = v
  18. end
  19. end
  20.  
  21. _G.HBEon = false
  22. _G.KAon = false
  23. _G.TPAon = false
  24. _G.CESPon = false
  25. _G.db = false
  26.  
  27.  
  28. function toggle(btn,tog)
  29. if tog == false then
  30. warn(tog)
  31. btn.BackgroundColor3 = Color3.fromRGB(130, 130, 130)
  32. else
  33. if tog == true then
  34. warn(tog)
  35. btn.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  36. end
  37. end
  38. end
  39.  
  40. function giveall()
  41. for i,v in pairs(game.Players:GetPlayers()) do
  42. if v.Name ~= me.Name and not nw.Teams:ArePlayersFriendly(v,me) and nw.Characters:GetCharacter(v) ~= nil then
  43. vc = nw.Characters:GetCharacter(v)
  44. for r,f in pairs(vc:GetDescendants()) do
  45. if f:IsA('Part') or f:IsA('MeshPart') then
  46. color = Color3.fromRGB(13, 105, 172)
  47. local zi = 3
  48. if f.Name == 'Head' and f.Parent.Name == 'Hitbox' then
  49. con = getconnections(f:GetPropertyChangedSignal("Size"))
  50. for i,v in next, con do
  51. v:Disable()
  52. end
  53. f.Transparency = 1
  54. f.CanCollide = false
  55. f.Size = Vector3.new(7,7,7)
  56. color = Color3.fromRGB(172, 37, 39)
  57. local zi = 4
  58. local bha = Instance.new('BoxHandleAdornment')
  59. bha.Transparency = .7
  60. bha.AlwaysOnTop = true
  61. bha.ZIndex = zi
  62. bha.Color3 = color
  63. bha.Size = f.Size
  64. bha.Adornee = f
  65. bha.Parent = f
  66. end
  67. end
  68. end
  69. end
  70. end
  71. end
  72.  
  73. function giveone(plr,char)
  74. for r,f in pairs(char:GetDescendants()) do
  75. if f:IsA('Part') or f:IsA('MeshPart') then
  76. if f.Name == 'Head' and f.Parent.Name == 'Hitbox' then
  77. con = getconnections(f:GetPropertyChangedSignal("Size"))
  78. for i,v in next, con do
  79. v:Disable()
  80. end
  81. f.Size = Vector3.new(7,7,7)
  82. f.Transparency = 1
  83. f.CanCollide = false
  84. color = Color3.fromRGB(172, 37, 39)
  85. local zi = 4
  86. local bha = Instance.new('BoxHandleAdornment')
  87. bha.Transparency = .7
  88. bha.AlwaysOnTop = true
  89. bha.ZIndex = zi
  90. bha.Color3 = color
  91. bha.Size = f.Size
  92. bha.Adornee = f
  93. bha.Parent = f
  94. end
  95. end
  96. end
  97. end
  98.  
  99. function findknife()
  100. local c = nw.Characters:GetCharacter(me)
  101. if c:FindFirstChild('Backpack') then
  102. local bp = c:FindFirstChild('Backpack')
  103. for i,v in pairs(bp:GetDescendants()) do
  104. if v.Name == 'Stab' and v:IsA('BindableEvent') then
  105. return v.Parent.Parent
  106. end
  107. end
  108. end
  109. end
  110.  
  111. function findequipped()
  112. if nw.Characters:GetCharacter(me) ~= nil then
  113. local c = nw.Characters:GetCharacter(me)
  114. if c:FindFirstChild('Backpack') then
  115. if c.Backpack.Equipped.Value ~= nil then
  116. return c.Backpack.Equipped.Value
  117. else
  118. return nil
  119. end
  120. end
  121. end
  122. end
  123.  
  124. function holdingknife()
  125. if nw.Characters:GetCharacter(me) ~= nil then
  126. local c = nw.Characters:GetCharacter(me)
  127. if c:FindFirstChild('Backpack') then
  128. if c.Backpack.Equipped.Value == findknife() then
  129. return true
  130. else
  131. return false
  132. end
  133. end
  134. end
  135. end
  136.  
  137. function tp(vec,sec)
  138. if _G.db == false then
  139. _G.db = true
  140. for r,f in pairs(c:GetDescendants()) do
  141. if f:IsA('Part') or f:IsA('MeshPart') then
  142. tween = ts:Create(f,TweenInfo.new(sec),{Position = vec})
  143. tween:Play()
  144. end
  145. end
  146. end
  147. _G.db = false
  148. end
  149.  
  150. function giveallEsp()
  151. for i,v in pairs(game.Players:GetPlayers()) do
  152. if v.Name ~= me.Name and not nw.Teams:ArePlayersFriendly(v,me) and nw.Characters:GetCharacter(v) ~= nil then
  153. vc = nw.Characters:GetCharacter(v)
  154. for r,f in pairs(vc:GetDescendants()) do
  155. if f:IsA('Part') or f:IsA('MeshPart') and not f:FindFirstChild('BoxHandleAdornment') then
  156. color = Color3.fromRGB(13, 105, 172)
  157. local zi = 3
  158. if f.Name == 'Head' and not f:FindFirstChild('BillboardGui') then
  159. color = Color3.fromRGB(172, 37, 39)
  160. local zi = 4
  161.  
  162. local bbg = Instance.new('BillboardGui')
  163.  
  164. bbg.Size = UDim2.new(5, 0, 2, 0)
  165. bbg.StudsOffset = Vector3.new(0, 3, 0)
  166. bbg.Parent = f
  167. bbg.Active = true
  168. bbg.AlwaysOnTop = true
  169. local tl = Instance.new('TextLabel')
  170.  
  171. tl.Parent = bbg
  172. tl.Size = UDim2.new(1, 0, 1, 0)
  173. tl.TextColor3 = Color3.new(0.854902, 0.258824, 1)
  174. tl.TextScaled = true
  175. tl.BackgroundTransparency = 1
  176. tl.Text = v.Name
  177. tl.ZIndex = zi
  178. tl.TextStrokeTransparency = .8
  179. end
  180. local bha = Instance.new('BoxHandleAdornment')
  181. bha.Transparency = .7
  182. bha.AlwaysOnTop = true
  183. bha.ZIndex = zi
  184. bha.Color3 = color
  185. bha.Size = f.Size
  186. bha.Adornee = f
  187. bha.Parent = f
  188. end
  189. end
  190. end
  191. end
  192. end
  193.  
  194. function giveoneEsp(plr,char)
  195. for r,f in pairs(char:GetDescendants()) do
  196. if f:IsA('Part') or f:IsA('MeshPart') and not f:FindFirstChild('BoxHandleAdornment') then
  197. color = Color3.fromRGB(13, 105, 172)
  198. local zi = 3
  199. if f.Name == 'Head' and not f:FindFirstChild('BillboardGui') then
  200. color = Color3.fromRGB(172, 37, 39)
  201. local zi = 4
  202.  
  203. local bbg = Instance.new('BillboardGui')
  204.  
  205. bbg.Size = UDim2.new(7, 0, 4, 0)
  206. bbg.StudsOffset = Vector3.new(0, 3, 0)
  207. bbg.Parent = f
  208. bbg.Active = true
  209. bbg.AlwaysOnTop = true
  210. local tl = Instance.new('TextLabel')
  211.  
  212. tl.Parent = bbg
  213. tl.Size = UDim2.new(1, 0, 1, 0)
  214. tl.TextColor3 = Color3.new(0.854902, 0.258824, 1)
  215. tl.TextScaled = true
  216. tl.BackgroundTransparency = 1
  217. tl.Text = plr.Name
  218. tl.ZIndex = zi
  219. tl.TextStrokeTransparency = .8
  220. end
  221. local bha = Instance.new('BoxHandleAdornment')
  222. bha.Transparency = .7
  223. bha.AlwaysOnTop = true
  224. bha.ZIndex = zi
  225. bha.Color3 = color
  226. bha.Size = f.Size
  227. bha.Adornee = f
  228. bha.Parent = f
  229. end
  230. end
  231. end
  232.  
  233. local QTip6551BB = Instance.new("ScreenGui")
  234. local Frame = Instance.new("Frame")
  235. local Top = Instance.new("TextLabel")
  236. local NoRecoil = Instance.new("TextButton")
  237. local HBE = Instance.new("TextButton")
  238. local HBEtext = Instance.new("TextLabel")
  239. local KA = Instance.new("TextButton")
  240. local KAtext = Instance.new("TextLabel")
  241. local TPAtext = Instance.new("TextLabel")
  242. local TPA = Instance.new("TextButton")
  243. local CESPtext = Instance.new("TextLabel")
  244. local CESP = Instance.new("TextButton")
  245. local Cred = Instance.new("TextLabel")
  246. local Min = Instance.new("TextButton")
  247. --Properties:
  248. QTip6551BB.Name = "Q-Tip#6551 BB"
  249. QTip6551BB.Parent = game.CoreGui
  250. QTip6551BB.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  251.  
  252. Frame.Parent = QTip6551BB
  253. Frame.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  254. Frame.BorderSizePixel = 0
  255. Frame.Position = UDim2.new(0.00754716992, 0, 0.454545438, 0)
  256. Frame.Size = UDim2.new(0.211320758, 0, 0.319749206, 0)
  257. Frame.Active = true
  258. Frame.Draggable = true
  259.  
  260. Top.Name = "Top"
  261. Top.Parent = Frame
  262. Top.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  263. Top.BorderSizePixel = 0
  264. Top.Size = UDim2.new(1, 0, 0.107843138, 0)
  265. Top.Font = Enum.Font.SourceSansBold
  266. Top.Text = "Bad Business"
  267. Top.TextColor3 = Color3.new(0.533333, 0.533333, 0.533333)
  268. Top.TextScaled = true
  269. Top.TextSize = 40
  270. Top.TextWrapped = true
  271.  
  272. NoRecoil.Name = "NoRecoil"
  273. NoRecoil.Parent = Frame
  274. NoRecoil.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  275. NoRecoil.BorderSizePixel = 0
  276. NoRecoil.Position = UDim2.new(0.0571428575, 0, 0.181372553, 0)
  277. NoRecoil.Size = UDim2.new(0.285714298, 0, 0.102941178, 0)
  278. NoRecoil.Font = Enum.Font.SourceSansSemibold
  279. NoRecoil.Text = "No Recoil"
  280. NoRecoil.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  281. NoRecoil.TextScaled = true
  282. NoRecoil.TextSize = 14
  283. NoRecoil.TextWrapped = true
  284. NoRecoil.MouseButton1Click:Connect(function()
  285. local a = require(game:GetService("ReplicatedStorage").Tortoiseshell)
  286. local rs = a.Camera.FirstPerson.RecoilSpring
  287.  
  288. for i,v in next, rs do
  289. if type(v) == 'function' then
  290. hookfunction(v,function()end)
  291. end
  292. end
  293. end)
  294.  
  295. HBE.Name = "HBE"
  296. HBE.Parent = Frame
  297. HBE.BackgroundColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  298. HBE.BorderSizePixel = 0
  299. HBE.Position = UDim2.new(0.378571421, 0, 0.318627447, 0)
  300. HBE.Size = UDim2.new(0.0607142858, 0, 0.0735294148, 0)
  301. HBE.Font = Enum.Font.SourceSansSemibold
  302. HBE.Text = ""
  303. HBE.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  304. HBE.TextScaled = true
  305. HBE.TextSize = 14
  306. HBE.TextWrapped = true
  307.  
  308. HBE.MouseButton1Click:Connect(function()
  309. if _G.HBEon == false then
  310. _G.HBEon = true
  311. toggle(HBE,_G.HBEon)
  312. givehbe = nil
  313. destroyhbe = nil
  314. givehbe = nw.Characters.CharacterAdded:Connect(function(p, c)
  315. if p ~= me and not nw.Teams:ArePlayersFriendly(p,me) then
  316. wait()
  317. local a = c:WaitForChild('Hitbox')
  318. local b = a:WaitForChild('Head')
  319. giveone(p,c)
  320. end
  321. end)
  322. destroyhbe = rd.ChildAdded:Connect(function(ca)
  323. for i,v in pairs(ca:GetDescendants()) do
  324. wait()
  325. if v:IsA('BoxHandleAdornment') then
  326. v:Destroy()
  327. end
  328. if v ~= nil and v.Parent ~= nil and v.Parent.Name == 'Hitbox' and v.Name == 'Head' then
  329. v.Size = Vector3.new(1,1,1)
  330. end
  331. end
  332. end)
  333. giveall()
  334. else
  335. if _G.HBEon == true then
  336. _G.HBEon = false
  337. toggle(HBE,_G.HBEon)
  338. givehbe:Disconnect()
  339. givehbe = nil
  340. destroyhbe:Disconnect()
  341. destroyhbe = nil
  342. for i,v in pairs(Workspace.Characters:GetDescendants()) do
  343. if v:IsA('BoxHandleAdornment') and v.Size == Vector3.new(7,7,7) then
  344. v.Parent.Size = Vector3.new(1.5, 1.6, 1.5)
  345. v:Destroy()
  346. end
  347. end
  348. end
  349. end
  350. end)
  351.  
  352. HBEtext.Name = "HBEtext"
  353. HBEtext.Parent = Frame
  354. HBEtext.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  355. HBEtext.BorderColor3 = Color3.new(0.486275, 0.486275, 0.486275)
  356. HBEtext.Position = UDim2.new(0.0571428537, 0, 0.30392158, 0)
  357. HBEtext.Size = UDim2.new(0.285714298, 0, 0.102941178, 0)
  358. HBEtext.Font = Enum.Font.SourceSansSemibold
  359. HBEtext.Text = "HBE"
  360. HBEtext.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  361. HBEtext.TextScaled = true
  362. HBEtext.TextSize = 14
  363. HBEtext.TextWrapped = true
  364.  
  365. KA.Name = "KA"
  366. KA.Parent = Frame
  367. KA.BackgroundColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  368. KA.BorderSizePixel = 0
  369. KA.Position = UDim2.new(0.378571421, 0, 0.460784316, 0)
  370. KA.Size = UDim2.new(0.0607142858, 0, 0.0735294148, 0)
  371. KA.Font = Enum.Font.SourceSansSemibold
  372. KA.Text = ""
  373. KA.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  374. KA.TextScaled = true
  375. KA.TextSize = 14
  376. KA.TextWrapped = true
  377.  
  378. KA.MouseButton1Click:Connect(function()
  379. if _G.KAon == false then
  380. _G.KAon = true
  381. toggle(KA,_G.KAon)
  382. while wait() do
  383. if nw.Characters:GetCharacter(me) ~= nil and _G.KAon == true then
  384. c = nw.Characters:GetCharacter(me)
  385. for i,v in pairs(game.Players:GetPlayers()) do
  386. if v.Name ~= me.Name and nw.Teams:ArePlayersFriendly(v, me) == false and nw.Characters:GetCharacter(v) ~= nil then
  387. vc = nw.Characters:GetCharacter(v)
  388. if vc:FindFirstChild('Body') and vc:FindFirstChild('Hitbox') and vc:FindFirstChild('Health').Value > 0 then
  389. local b = vc:FindFirstChild('Body')
  390. local hb = vc:FindFirstChild('Hitbox')
  391. if b:FindFirstChild('Head') and hb:FindFirstChild('Head') then
  392. local bh = b:FindFirstChild('Head')
  393. local h = hb:FindFirstChild('Head')
  394. mag = (c.Body.Head.Position - bh.Position).Magnitude
  395. if mag < 20 then
  396. local lastequipped = findequipped()
  397. ire:FireServer('Equip',findknife())
  398. for i = 1,20 do
  399. re:FireServer("Stab",findknife(),h,ev,ev)
  400. end
  401. wait()
  402. ire:FireServer('Equip',lastequipped)
  403. ire:FireServer('Equip',lastequipped)
  404. ire:FireServer('Equip',lastequipped)
  405. end
  406. end
  407. end
  408. end
  409. end
  410. else
  411. if _G.KAon == false then
  412. break
  413. end
  414. end
  415. end
  416. else
  417. if _G.KAon == true then
  418. _G.KAon = false
  419. toggle(KA,_G.KAon)
  420. end
  421. end
  422. end)
  423.  
  424.  
  425. KAtext.Name = "KAtext"
  426. KAtext.Parent = Frame
  427. KAtext.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  428. KAtext.BorderColor3 = Color3.new(0.486275, 0.486275, 0.486275)
  429. KAtext.Position = UDim2.new(0.0571428537, 0, 0.446078449, 0)
  430. KAtext.Size = UDim2.new(0.285714298, 0, 0.102941178, 0)
  431. KAtext.Font = Enum.Font.SourceSansSemibold
  432. KAtext.Text = "Kill Aura"
  433. KAtext.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  434. KAtext.TextScaled = true
  435. KAtext.TextSize = 14
  436. KAtext.TextWrapped = true
  437.  
  438. TPAtext.Name = "TPAtext"
  439. TPAtext.Parent = Frame
  440. TPAtext.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  441. TPAtext.BorderColor3 = Color3.new(0.486275, 0.486275, 0.486275)
  442. TPAtext.Position = UDim2.new(0.0571428537, 0, 0.588235319, 0)
  443. TPAtext.Size = UDim2.new(0.285714298, 0, 0.102941178, 0)
  444. TPAtext.Font = Enum.Font.SourceSansSemibold
  445. TPAtext.Text = "TP Aura"
  446. TPAtext.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  447. TPAtext.TextScaled = true
  448. TPAtext.TextSize = 14
  449. TPAtext.TextWrapped = true
  450.  
  451. TPA.Name = "TPA"
  452. TPA.Parent = Frame
  453. TPA.BackgroundColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  454. TPA.BorderSizePixel = 0
  455. TPA.Position = UDim2.new(0.378571421, 0, 0.602941155, 0)
  456. TPA.Size = UDim2.new(0.0607142858, 0, 0.0735294148, 0)
  457. TPA.Font = Enum.Font.SourceSansSemibold
  458. TPA.Text = ""
  459. TPA.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  460. TPA.TextScaled = true
  461. TPA.TextSize = 14
  462. TPA.TextWrapped = true
  463. TPA.MouseButton1Click:Connect(function()
  464. if _G.TPAon == false then
  465. _G.TPAon = true
  466. toggle(TPA,_G.TPAon)
  467. while wait() do
  468. if nw.Characters:GetCharacter(me) ~= nil and _G.TPAon == true then
  469. c = nw.Characters:GetCharacter(me)
  470. for i,v in pairs(game.Players:GetPlayers()) do
  471. if v.Name ~= me.Name and nw.Teams:ArePlayersFriendly(v, me) == false and nw.Characters:GetCharacter(v) ~= nil then
  472. vc = nw.Characters:GetCharacter(v)
  473. if vc:FindFirstChild('Body') and vc:FindFirstChild('Hitbox') and vc:FindFirstChild('Health').Value > 0 then
  474. local b = vc:FindFirstChild('Body')
  475. local hb = vc:FindFirstChild('Hitbox')
  476. if b:FindFirstChild('Head') and hb:FindFirstChild('Head') then
  477. local bh = b:FindFirstChild('Head')
  478. local h = hb:FindFirstChild('Head')
  479. mag = (c.Body.Head.Position - bh.Position).Magnitude
  480. if mag < 20 then
  481. local lastequipped = findequipped()
  482. ire:FireServer('Equip',findknife())
  483. for i = 1,20 do
  484. re:FireServer(re:FireServer("Stab",findknife(),h,ev,ev))
  485. end
  486. wait()
  487. ire:FireServer('Equip',lastequipped)
  488. ire:FireServer('Equip',lastequipped)
  489. ire:FireServer('Equip',lastequipped)
  490. else
  491. if mag < 50 then
  492. tp(h.Position,.5)
  493. local lastequipped = findequipped()
  494. ire:FireServer('Equip',findknife())
  495. tp(h.Position,.5)
  496. for i = 1,20 do
  497. re:FireServer(re:FireServer("Stab",findknife(),h,ev,ev))
  498. end
  499. wait()
  500. ire:FireServer('Equip',lastequipped)
  501. ire:FireServer('Equip',lastequipped)
  502. ire:FireServer('Equip',lastequipped)
  503. end
  504. end
  505. end
  506. end
  507. end
  508. end
  509. else
  510. if _G.TPAon == false then
  511. break
  512. end
  513. end
  514. end
  515. else
  516. if _G.TPAon == true then
  517. _G.TPAon = false
  518. toggle(TPA,_G.TPAon)
  519. end
  520. end
  521. end)
  522.  
  523. CESPtext.Name = "CESPtext"
  524. CESPtext.Parent = Frame
  525. CESPtext.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  526. CESPtext.BorderColor3 = Color3.new(0.486275, 0.486275, 0.486275)
  527. CESPtext.Position = UDim2.new(0.0571428537, 0, 0.735294163, 0)
  528. CESPtext.Size = UDim2.new(0.285714298, 0, 0.102941178, 0)
  529. CESPtext.Font = Enum.Font.SourceSansSemibold
  530. CESPtext.Text = "Chams+ESP"
  531. CESPtext.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  532. CESPtext.TextScaled = true
  533. CESPtext.TextSize = 14
  534. CESPtext.TextWrapped = true
  535.  
  536. CESP.Name = "CESP"
  537. CESP.Parent = Frame
  538. CESP.BackgroundColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  539. CESP.BorderSizePixel = 0
  540. CESP.Position = UDim2.new(0.378571421, 0, 0.75, 0)
  541. CESP.Size = UDim2.new(0.0607142858, 0, 0.0735294148, 0)
  542. CESP.Font = Enum.Font.SourceSansSemibold
  543. CESP.Text = ""
  544. CESP.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  545. CESP.TextScaled = true
  546. CESP.TextSize = 14
  547. CESP.TextWrapped = true
  548. CESP.MouseButton1Click:Connect(function()
  549. if _G.CESPon == false then
  550. _G.CESPon = true
  551. toggle(CESP,_G.CESPon)
  552. giveoneespcon = nil
  553. giveoneespcon = nw.Characters.CharacterAdded:Connect(function(p, c)
  554. if p ~= me and not nw.Teams:ArePlayersFriendly(p,me) then
  555. wait(.1)
  556. giveoneEsp(p,c)
  557. end
  558. end)
  559. giveallEsp()
  560. else
  561. if _G.CESPon == true then
  562. _G.CESPon = false
  563. toggle(CESP,_G.CESPon)
  564. giveoneespcon:Disconnect()
  565. giveoneespcon = nil
  566. for i,v in pairs(Workspace.Characters:GetDescendants()) do
  567. if v:IsA('BoxHandleAdornment') or v:IsA('BillboardGui') and v.Size ~= Vector3.new(7,7,7) then
  568. v:Destroy()
  569. end
  570. end
  571. end
  572. end
  573. end)
  574.  
  575. Cred.Name = "Cred"
  576. Cred.Parent = Frame
  577. Cred.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  578. Cred.BorderColor3 = Color3.new(0.486275, 0.486275, 0.486275)
  579. Cred.Position = UDim2.new(0.549999952, 0, 0.181372553, 0)
  580. Cred.Size = UDim2.new(0.328571439, 0, 0.656862736, 0)
  581. Cred.Font = Enum.Font.SourceSansSemibold
  582. Cred.Text = "Everything made by Q-Tip#6551 feel free to dm me"
  583. Cred.TextColor3 = Color3.new(0.776471, 0.776471, 0.776471)
  584. Cred.TextScaled = true
  585. Cred.TextSize = 14
  586. Cred.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement