Advertisement
RimvoTy

Untitled

Mar 21st, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.41 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. script.Parent = p
  3. print 'Tabs loading!'
  4. local cmdss = {";ff",";k",";r",";kill",";uf",";ws","!afk",";listp",";nt",";music",";mo","/tls",";g",";mc",";cmds"}
  5. p.Chatted:connect(function(message)
  6. if message == ";ff" then
  7. ff()
  8. elseif message == ";k" then
  9. k()
  10. elseif message == ";r" then
  11. r()
  12. elseif message == ";kill" then
  13. kill()
  14. elseif message == ";uf" then
  15. unff()
  16. elseif message == ";cmds" then
  17. cmd()
  18. elseif message == ";nt" then
  19. nortab()
  20. elseif message == ";mc" then
  21. mc()
  22. elseif message == "!afk" then
  23. afk()
  24. elseif message == ";listp" then
  25. listp()
  26. elseif message == ";music" then
  27. music()
  28. elseif message == ";mo" then
  29. moptions()
  30. elseif message == ";ws" then
  31. ws()
  32. elseif message == "/tls" then
  33. tls()
  34. elseif message == ";g" then
  35. god()
  36. end
  37. end)
  38. local speeds = {"1","10","20","30","40","50","60","70","80","90","100"}
  39. local sound = {"1","2","3","4"}
  40. local ban = {"grubsteak","Snazzah","Kyrorr"} --not funny dood
  41. function ff()
  42. local check = game.Workspace:FindFirstChild("sTabs1O")
  43. if check ~= nil then
  44. check:Destroy()
  45. else
  46. print'Checked'
  47. end
  48. local bm = Instance.new("Model")
  49. bm.Parent = p
  50. bm.Name = "sTabs1O"
  51. local players = game.Players:GetChildren()
  52. for i = 1,#players do
  53. bm = p.sTabs1O
  54. local m = Instance.new("Model")
  55. local tab = Instance.new("Part")
  56. local sb = Instance.new("SelectionBox")
  57. local h = Instance.new("Humanoid")
  58. local cd = Instance.new("ClickDetector")
  59. m.Parent = bm
  60. m.Name = players[i].Name
  61. tab.Parent = m
  62. tab.Name = "Head"
  63. tab.CanCollide = false
  64. tab.Anchored = true
  65. tab.Locked = true
  66. tab.Transparency = 0.0009
  67. tab.BottomSurface = "Smooth"
  68. tab.TopSurface = "Smooth"
  69. tab.FormFactor = "Custom"
  70. tab.Size = Vector3.new(2,2,2)
  71. tab.Position = Vector3.new(0,4,0)
  72. sb.Parent = tab
  73. sb.Adornee = tab
  74. sb.Color3 = Color3.new(0,0,0)
  75. sb.LineThickness = 0.01
  76. sb.SurfaceTransparency = 0.2
  77. sb.SurfaceColor3 = Color3.new(0,0,255)
  78. h.Parent = m
  79. h.MaxHealth = 0
  80. cd.Parent = tab
  81. local function move()
  82. coroutine.resume(coroutine.create(function()
  83. local orbit = p.Character.Torso
  84. local dist = 3 + #players
  85. local speed = 0.005
  86. local angle = 150 * i
  87. local o = tab
  88. local pos = o.Position
  89. while wait() do
  90. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  91. o.CFrame = CFrame.new(o.Position,orbit.Position)
  92. angle = angle + 1
  93. end
  94. end))
  95. end
  96. move()
  97. tab.ClickDetector.MouseClick:connect(function(c)
  98. if c == p then
  99. local find = game.Players:FindFirstChild(m.Name)
  100. if find ~= nil then
  101. tab.Size = Vector3.new(1.5,1.5,1.5)
  102. Instance.new("ForceField", find.Character)
  103. wait(.5)
  104. tab.Size = Vector3.new(2,2,2)
  105. end
  106. end
  107. end)
  108. end
  109.  
  110. end
  111.  
  112. function k()
  113. local check = game.Workspace:FindFirstChild("sTabs1O")
  114. if check ~= nil then
  115. check:Destroy()
  116. else
  117. print'Checked'
  118. end
  119. local bm = Instance.new("Model")
  120. bm.Parent = game.Workspace
  121. bm.Name = "sTabs1O"
  122. local players = game.Players:GetChildren()
  123. for i = 1,#players do
  124. bm = game.Workspace.sTabs1O
  125. local m = Instance.new("Model")
  126. local tab = Instance.new("Part")
  127. local sb = Instance.new("SelectionBox")
  128. local h = Instance.new("Humanoid")
  129. local cd = Instance.new("ClickDetector")
  130. m.Parent = bm
  131. m.Name = players[i].Name
  132. tab.Parent = m
  133. tab.Name = "Head"
  134. tab.CanCollide = false
  135. tab.Anchored = true
  136. tab.Locked = true
  137. tab.Transparency = 0.0009
  138. tab.BottomSurface = "Smooth"
  139. tab.TopSurface = "Smooth"
  140. tab.FormFactor = "Custom"
  141. tab.Size = Vector3.new(2,2,2)
  142. tab.Position = Vector3.new(0,4,0)
  143. sb.Parent = tab
  144. sb.Adornee = tab
  145. sb.Color3 = Color3.new(0,0,0)
  146. sb.LineThickness = 0.01
  147. sb.SurfaceTransparency = 0.2
  148. sb.SurfaceColor3 = Color3.new(255,255,255)
  149. h.Parent = m
  150. h.MaxHealth = 0
  151. cd.Parent = tab
  152. local function move()
  153. coroutine.resume(coroutine.create(function()
  154. local orbit = p.Character.Torso
  155. local dist = 3 + #players
  156. local speed = 0.005
  157. local angle = 150 * i
  158. local o = tab
  159. local pos = o.Position
  160. while wait() do
  161. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  162. o.CFrame = CFrame.new(o.Position,orbit.Position)
  163. angle = angle + 1
  164. end
  165. end))
  166. end
  167. move()
  168. tab.ClickDetector.MouseClick:connect(function(c)
  169. if c == p then
  170. local find = game.Players:FindFirstChild(m.Name)
  171. if find ~= nil then
  172. tab.Size = Vector3.new(1.5,1.5,1.5)
  173. find.Character:Destroy()
  174. find:remove()
  175. wait(.5)
  176. tab.Size = Vector3.new(2,2,2)
  177. end
  178. end
  179. end)
  180. end
  181. end
  182.  
  183. function kill()
  184. local check = game.Workspace:FindFirstChild("sTabs1O")
  185. if check ~= nil then
  186. check:Destroy()
  187. else
  188. print'Checked'
  189. end
  190. local bm = Instance.new("Model")
  191. bm.Parent = game.Workspace
  192. bm.Name = "sTabs1O"
  193. local players = game.Players:GetChildren()
  194. for i = 1,#players do
  195. bm = game.Workspace.sTabs1O
  196. local m = Instance.new("Model")
  197. local tab = Instance.new("Part")
  198. local sb = Instance.new("SelectionBox")
  199. local h = Instance.new("Humanoid")
  200. local cd = Instance.new("ClickDetector")
  201. m.Parent = bm
  202. m.Name = players[i].Name
  203. tab.Parent = m
  204. tab.Name = "Head"
  205. tab.CanCollide = false
  206. tab.Anchored = true
  207. tab.Locked = true
  208. tab.Transparency = 0.0009
  209. tab.BottomSurface = "Smooth"
  210. tab.TopSurface = "Smooth"
  211. tab.FormFactor = "Custom"
  212. tab.Size = Vector3.new(2,2,2)
  213. tab.Position = Vector3.new(0,4,0)
  214. sb.Parent = tab
  215. sb.Adornee = tab
  216. sb.Color3 = Color3.new(0,0,0)
  217. sb.LineThickness = 0.01
  218. sb.SurfaceTransparency = 0.2
  219. sb.SurfaceColor3 = Color3.new(255,0,0)
  220. h.Parent = m
  221. h.MaxHealth = 0
  222. cd.Parent = tab
  223. local function move()
  224. coroutine.resume(coroutine.create(function()
  225. local orbit = p.Character.Torso
  226. local dist = 3 + #players
  227. local speed = 0.005
  228. local angle = 150 * i
  229. local o = tab
  230. local pos = o.Position
  231. while wait() do
  232. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  233. o.CFrame = CFrame.new(o.Position,orbit.Position)
  234. angle = angle + 1
  235. end
  236. end))
  237. end
  238. move()
  239. tab.ClickDetector.MouseClick:connect(function(c)
  240. if c == p then
  241. local find = game.Players:FindFirstChild(m.Name)
  242. if find ~= nil then
  243. tab.Size = Vector3.new(1.5,1.5,1.5)
  244. find.Character.Humanoid.MaxHealth = 0
  245. wait(.5)
  246. tab.Size = Vector3.new(2,2,2)
  247. end
  248. end
  249. end)
  250. end
  251. end
  252.  
  253. function unff()
  254. local check = game.Workspace:FindFirstChild("sTabs1O")
  255. if check ~= nil then
  256. check:Destroy()
  257. else
  258. print'Checked'
  259. end
  260. local bm = Instance.new("Model")
  261. bm.Parent = game.Workspace
  262. bm.Name = "sTabs1O"
  263. local players = game.Players:GetChildren()
  264. for i = 1,#players do
  265. bm = game.Workspace.sTabs1O
  266. local m = Instance.new("Model")
  267. local tab = Instance.new("Part")
  268. local sb = Instance.new("SelectionBox")
  269. local h = Instance.new("Humanoid")
  270. local cd = Instance.new("ClickDetector")
  271. m.Parent = bm
  272. m.Name = players[i].Name
  273. tab.Parent = m
  274. tab.Name = "Head"
  275. tab.CanCollide = false
  276. tab.Anchored = true
  277. tab.Locked = true
  278. tab.Transparency = 0.0009
  279. tab.BottomSurface = "Smooth"
  280. tab.TopSurface = "Smooth"
  281. tab.FormFactor = "Custom"
  282. tab.Size = Vector3.new(2,2,2)
  283. tab.Position = Vector3.new(0,4,0)
  284. sb.Parent = tab
  285. sb.Adornee = tab
  286. sb.Color3 = Color3.new(0,0,0)
  287. sb.LineThickness = 0.01
  288. sb.SurfaceTransparency = 0.2
  289. sb.SurfaceColor3 = Color3.new(0,255,255)
  290. h.Parent = m
  291. h.MaxHealth = 0
  292. cd.Parent = tab
  293. local function move()
  294. coroutine.resume(coroutine.create(function()
  295. local orbit = p.Character.Torso
  296. local dist = 3 + #players
  297. local speed = 0.005
  298. local angle = 150 * i
  299. local o = tab
  300. local pos = o.Position
  301. while wait() do
  302. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  303. o.CFrame = CFrame.new(o.Position,orbit.Position)
  304. angle = angle + 1
  305. end
  306. end))
  307. end
  308. move()
  309. tab.ClickDetector.MouseClick:connect(function(c)
  310. if c == p then
  311. local find = game.Players:FindFirstChild(m.Name)
  312. if find ~= nil then
  313. local u = find.Character:FindFirstChild("ForceField")
  314. tab.Size = Vector3.new(1.5,1.5,1.5)
  315. u:Destroy()
  316. wait(.5)
  317. tab.Size = Vector3.new(2,2,2)
  318. end
  319. end
  320. end)
  321. end
  322. end
  323.  
  324. function ws()
  325. local check = game.Workspace:FindFirstChild("sTabs1O")
  326. if check ~= nil then
  327. check:Destroy()
  328. else
  329. print'Checked'
  330. end
  331. local bm = Instance.new("Model")
  332. bm.Parent = game.Workspace
  333. bm.Name = "sTabs1O"
  334. for i = 1,#speeds do
  335. bm = game.Workspace.sTabs1O
  336. local m = Instance.new("Model")
  337. local tab = Instance.new("Part")
  338. local sb = Instance.new("SelectionBox")
  339. local h = Instance.new("Humanoid")
  340. local cd = Instance.new("ClickDetector")
  341. m.Parent = bm
  342. m.Name = speeds[i]
  343. tab.Parent = m
  344. tab.Name = "Head"
  345. tab.CanCollide = false
  346. tab.Anchored = true
  347. tab.Locked = true
  348. tab.Transparency = 0.0009
  349. tab.BottomSurface = "Smooth"
  350. tab.TopSurface = "Smooth"
  351. tab.FormFactor = "Custom"
  352. tab.Size = Vector3.new(2,2,2)
  353. tab.Position = Vector3.new(0,4,0)
  354. sb.Parent = tab
  355. sb.Adornee = tab
  356. sb.Color3 = Color3.new(0,0,0)
  357. sb.LineThickness = 0.01
  358. sb.SurfaceTransparency = 0.2
  359. sb.SurfaceColor3 = Color3.new(255,255,0)
  360. h.Parent = m
  361. h.MaxHealth = 0
  362. cd.Parent = tab
  363. local function move()
  364. coroutine.resume(coroutine.create(function()
  365. local orbit = p.Character.Torso
  366. local dist = 3 + #speeds
  367. local speed = 0.005
  368. local angle = 100 * i
  369. local o = tab
  370. local pos = o.Position
  371. while wait() do
  372. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  373. o.CFrame = CFrame.new(o.Position,orbit.Position)
  374. angle = angle + 1
  375. end
  376. end))
  377. end
  378. move()
  379. tab.ClickDetector.MouseClick:connect(function(c)
  380. if c == p then
  381. tab.Size = Vector3.new(1.5,1.5,1.5)
  382. p.Character.Humanoid.WalkSpeed = m.Name
  383. wait(.5)
  384. tab.Size = Vector3.new(2,2,2)
  385. end
  386. end)
  387. end
  388. end
  389.  
  390. function god()
  391. local check = game.Workspace:FindFirstChild("sTabs1O")
  392. if check ~= nil then
  393. check:Destroy()
  394. else
  395. print'Checked'
  396. end
  397. local bm = Instance.new("Model")
  398. bm.Parent = game.Workspace
  399. bm.Name = "sTabs1O"
  400. local players = game.Players:GetChildren()
  401. for i = 1,#players do
  402. bm = game.Workspace.sTabs1O
  403. local m = Instance.new("Model")
  404. local tab = Instance.new("Part")
  405. local sb = Instance.new("SelectionBox")
  406. local h = Instance.new("Humanoid")
  407. local cd = Instance.new("ClickDetector")
  408. m.Parent = bm
  409. m.Name = players[i].Name
  410. tab.Parent = m
  411. tab.Name = "Head"
  412. tab.CanCollide = false
  413. tab.Anchored = true
  414. tab.Locked = true
  415. tab.Transparency = 0.0009
  416. tab.BottomSurface = "Smooth"
  417. tab.TopSurface = "Smooth"
  418. tab.FormFactor = "Custom"
  419. tab.Size = Vector3.new(2,2,2)
  420. tab.Position = Vector3.new(0,4,0)
  421. sb.Parent = tab
  422. sb.Adornee = tab
  423. sb.Color3 = Color3.new(0,0,0)
  424. sb.LineThickness = 0.01
  425. sb.SurfaceTransparency = 0.7
  426. sb.SurfaceColor3 = Color3.new(0,0,0)
  427. h.Parent = m
  428. h.MaxHealth = 0
  429. cd.Parent = tab
  430. local function move()
  431. coroutine.resume(coroutine.create(function()
  432. local orbit = p.Character.Torso
  433. local dist = 3 + #players
  434. local speed = 0.005
  435. local angle = 150 * i
  436. local o = tab
  437. local pos = o.Position
  438. while wait() do
  439. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  440. o.CFrame = CFrame.new(o.Position,orbit.Position)
  441. angle = angle + 1
  442. end
  443. end))
  444. end
  445. move()
  446. tab.ClickDetector.MouseClick:connect(function(c)
  447. if c == p then
  448. local find = game.Players:FindFirstChild(m.Name)
  449. if find ~= nil then
  450. tab.Size = Vector3.new(1.5,1.5,1.5)
  451. find.Character.Humanoid.MaxHealth = math.huge
  452. wait(.5)
  453. tab.Size = Vector3.new(2,2,2)
  454. end
  455. end
  456. end)
  457. end
  458. end
  459.  
  460. function cmd()
  461. local check = game.Workspace:FindFirstChild("sTabs1O")
  462. if check ~= nil then
  463. check:Destroy()
  464. else
  465. print'Checked'
  466. end
  467. local bm = Instance.new("Model")
  468. bm.Parent = game.Workspace
  469. bm.Name = "sTabs1O"
  470. for i = 1,#cmdss do
  471. bm = game.Workspace.sTabs1O
  472. local m = Instance.new("Model")
  473. local tab = Instance.new("Part")
  474. local sb = Instance.new("SelectionBox")
  475. local h = Instance.new("Humanoid")
  476. local cd = Instance.new("ClickDetector")
  477. m.Parent = bm
  478. m.Name = cmdss[i]
  479. tab.Parent = m
  480. tab.Name = "Head"
  481. tab.CanCollide = false
  482. tab.Anchored = true
  483. tab.Locked = true
  484. tab.Transparency = 0.0009
  485. tab.BottomSurface = "Smooth"
  486. tab.TopSurface = "Smooth"
  487. tab.FormFactor = "Custom"
  488. tab.Size = Vector3.new(2,2,2)
  489. tab.Position = Vector3.new(0,4,0)
  490. sb.Parent = tab
  491. sb.Adornee = tab
  492. sb.Color3 = Color3.new(0,0,0)
  493. sb.LineThickness = 0.01
  494. sb.SurfaceTransparency = 0.2
  495. sb.SurfaceColor3 = Color3.new(0,0,0)
  496. h.Parent = m
  497. h.MaxHealth = 0
  498. cd.Parent = tab
  499. local function move()
  500. coroutine.resume(coroutine.create(function()
  501. local orbit = p.Character.Torso
  502. local dist = 3 + #cmdss
  503. local speed = 0.005
  504. local angle = 100 * i
  505. local o = tab
  506. local pos = o.Position
  507. while wait() do
  508. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  509. o.CFrame = CFrame.new(o.Position,orbit.Position)
  510. angle = angle + 1
  511. end
  512. end))
  513. end
  514. move()
  515. tab.ClickDetector.MouseClick:connect(function(c)
  516. if c == p then
  517. tab.Size = Vector3.new(1.5,1.5,1.5)
  518. print(m.Name)
  519. if m.Name == ";ff" then
  520. ff()
  521. elseif m.Name == ";k" then
  522. k()
  523. elseif m.Name == ";r" then
  524. r()
  525. elseif m.Name == ";kill" then
  526. kill()
  527. elseif m.Name == ";uf" then
  528. unff()
  529. elseif m.Name == ";ws" then
  530. ws()
  531. elseif m.Name == "!afk" then
  532. afk()
  533. elseif m.Name == ";listp" then
  534. listp()
  535. elseif m.Name == ";nt" then
  536. nortab()
  537. elseif m.Name == ";music" then
  538. music()
  539. elseif m.Name == ";mo" then
  540. moptions()
  541. elseif m.Name == ";mc" then
  542. mc()
  543. elseif m.Name == "/tls" then
  544. tls()
  545. elseif m.Name == ";g" then
  546. god()
  547. elseif m.Name == ";cmd" then
  548. print"CMD = Active[Y]"
  549. end
  550. wait(.5)
  551. tab.Size = Vector3.new(2,2,2)
  552. end
  553. end)
  554. end
  555. end
  556.  
  557. function r()
  558. local r = game.Workspace:FindFirstChild("sTabs1O")
  559. if r ~= nil then
  560. r:Destroy()
  561. else
  562. print "Error[TabsNotFound]"
  563. end
  564. end
  565. print 'Tabs fully loaded'
  566.  
  567. function afk()
  568. local check = game.Workspace:FindFirstChild("sTabs1O")
  569. if check ~= nil then
  570. check:Destroy()
  571. else
  572. print'Checked'
  573. end
  574. local bm = Instance.new("Model")
  575. bm.Parent = game.Workspace
  576. bm.Name = "sTabs1O"
  577. for i = 1,4 do
  578. bm = game.Workspace.sTabs1O
  579. local m = Instance.new("Model")
  580. local tab = Instance.new("Part")
  581. local sb = Instance.new("SelectionBox")
  582. local h = Instance.new("Humanoid")
  583. local cd = Instance.new("ClickDetector")
  584. m.Parent = bm
  585. m.Name = "[AFK]"
  586. tab.Parent = m
  587. tab.Name = "Head"
  588. tab.CanCollide = false
  589. tab.Anchored = true
  590. tab.Locked = true
  591. tab.Transparency = 0.0009
  592. tab.BottomSurface = "Smooth"
  593. tab.TopSurface = "Smooth"
  594. tab.FormFactor = "Custom"
  595. tab.Size = Vector3.new(2,2,2)
  596. tab.Position = Vector3.new(0,4,0)
  597. sb.Parent = tab
  598. sb.Adornee = tab
  599. sb.Color3 = Color3.new(0,255,0)
  600. sb.LineThickness = 0.01
  601. sb.SurfaceTransparency = 0.2
  602. sb.SurfaceColor3 = Color3.new(0,0,0)
  603. h.Parent = m
  604. h.MaxHealth = 0
  605. cd.Parent = tab
  606. local function move()
  607. coroutine.resume(coroutine.create(function()
  608. local orbit = p.Character.Torso
  609. local dist = 4
  610. local speed = 0.05
  611. local angle = 350 * i
  612. local o = tab
  613. local pos = o.Position
  614. while wait() do
  615. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(4,angle*speed,1) * CFrame.new(0,0,dist)
  616. o.CFrame = CFrame.new(o.Position,orbit.Position)
  617. angle = angle + 1
  618. end
  619. end))
  620. end
  621. move()
  622. tab.ClickDetector.MouseClick:connect(function()
  623. tab.Size = Vector3.new(1.5,1.5,1.5)
  624. print("AFK")
  625. wait(.5)
  626. tab.Size = Vector3.new(2,2,2)
  627. end)
  628. end
  629. end
  630.  
  631. function nortab()
  632. local m = Instance.new("Model")
  633. local tab = Instance.new("Part")
  634. local sb = Instance.new("SelectionBox")
  635. local h = Instance.new("Humanoid")
  636. m.Parent = p.Character
  637. m.Name = "1O_Tabs"
  638. tab.Parent = m
  639. tab.Name = "Head"
  640. tab.CanCollide = false
  641. tab.Anchored = true
  642. tab.Locked = true
  643. tab.Transparency = 0.0009
  644. tab.BottomSurface = "Smooth"
  645. tab.TopSurface = "Smooth"
  646. tab.FormFactor = "Custom"
  647. tab.Size = Vector3.new(.7,.7,.7)
  648. tab.Position = Vector3.new(0,4,0)
  649. sb.Parent = tab
  650. sb.Adornee = tab
  651. sb.Color3 = Color3.new(0,0,0)
  652. sb.LineThickness = 0.01
  653. sb.SurfaceTransparency = 0.2
  654. sb.SurfaceColor3 = Color3.new(0,255,0)
  655. h.Parent = m
  656. h.MaxHealth = 0
  657. local function move()
  658. coroutine.resume(coroutine.create(function()
  659. local orbit = p.Character.Torso
  660. local dist = 3
  661. local speed = 0.05
  662. local angle = 0
  663. local o = tab
  664. local pos = o.Position
  665. while wait() do
  666. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(2.5,angle*speed,1) * CFrame.new(0,0,dist)
  667. o.CFrame = CFrame.new(o.Position,orbit.Position)
  668. angle = angle + 1
  669. end
  670. end))
  671. end
  672. move()
  673. end
  674.  
  675. function tls()
  676. local tls = Instance.new("HopperBin")
  677. tls.BinType = "Clone"
  678. tls.Parent = p.Backpack
  679. local tls = Instance.new("HopperBin")
  680. tls.BinType = "Hammer"
  681. tls.Parent = p.Backpack
  682. local tls = Instance.new("HopperBin")
  683. tls.BinType = "Grab"
  684. tls.Parent = p.Backpack
  685. local tls = Instance.new("HopperBin")
  686. tls.BinType = "GameTool"
  687. tls.Parent = p.Backpack
  688. end
  689.  
  690. function music()
  691. local check = game.Workspace:FindFirstChild("sTabs1O")
  692. if check ~= nil then
  693. check:Destroy()
  694. else
  695. print'Checked'
  696. end
  697. local bm = Instance.new("Model")
  698. bm.Parent = game.Workspace
  699. bm.Name = "sTabs1O"
  700. for i = 1,#sound do
  701. bm = game.Workspace.sTabs1O
  702. local m = Instance.new("Model")
  703. local tab = Instance.new("Part")
  704. local sb = Instance.new("SelectionBox")
  705. local h = Instance.new("Humanoid")
  706. local cd = Instance.new("ClickDetector")
  707. m.Parent = bm
  708. m.Name = sound[i]
  709. tab.Parent = m
  710. tab.Name = "Head"
  711. tab.CanCollide = false
  712. tab.Anchored = true
  713. tab.Locked = true
  714. tab.Transparency = 0.0009
  715. tab.BottomSurface = "Smooth"
  716. tab.TopSurface = "Smooth"
  717. tab.FormFactor = "Custom"
  718. tab.Size = Vector3.new(2,2,2)
  719. tab.Position = Vector3.new(0,4,0)
  720. sb.Parent = tab
  721. sb.Adornee = tab
  722. sb.Color3 = Color3.new(255,255,255)
  723. sb.LineThickness = 0.01
  724. sb.SurfaceTransparency = 0.7
  725. sb.SurfaceColor3 = Color3.new(255,0,0)
  726. h.Parent = m
  727. h.MaxHealth = 0
  728. cd.Parent = tab
  729. local function move()
  730. coroutine.resume(coroutine.create(function()
  731. local orbit = p.Character.Torso
  732. local dist = 1 + #speeds
  733. local speed = 0.005
  734. local angle = 100 * i
  735. local o = tab
  736. local pos = o.Position
  737. while wait() do
  738. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  739. o.CFrame = CFrame.new(o.Position,orbit.Position)
  740. angle = angle + 1
  741. end
  742. end))
  743. end
  744. move()
  745. tab.ClickDetector.MouseClick:connect(function(c)
  746. if c == p then
  747. tab.Size = Vector3.new(1.5,1.5,1.5)
  748. local mcheck = game.Workspace:FindFirstChild("1OTabsMusic")
  749. if mcheck ~= nil then
  750. mcheck:Stop()
  751. mcheck:Destroy()
  752. print'SoundFound[E = False]'
  753. end
  754. if m.Name == "1" then
  755. local sid = Instance.new("Sound")
  756. sid.Parent = game.Workspace
  757. sid.Name = "1OTabsMusic"
  758. sid.SoundId = "rbxassetid://300899607"
  759. sid.Volume = 1
  760. sid:Play()
  761. sid.Looped = true
  762. moptions()
  763. elseif m.Name == "2" then
  764. local sid = Instance.new("Sound")
  765. sid.Parent = game.Workspace
  766. sid.Name = "1OTabsMusic"
  767. sid.SoundId = "rbxassetid://172661021"
  768. sid.Volume = 1
  769. sid:Play()
  770. sid.Looped = true
  771. moptions()
  772. elseif m.Name == "3" then
  773. local sid = Instance.new("Sound")
  774. sid.Parent = game.Workspace
  775. sid.Name = "1OTabsMusic"
  776. sid.SoundId = "rbxassetid://144418105"
  777. sid.Volume = 1
  778. sid:Play()
  779. sid.Looped = true
  780. moptions()
  781. elseif m.Name == "4" then
  782. local sid = Instance.new("Sound")
  783. sid.Parent = game.Workspace
  784. sid.Name = "1OTabsMusic"
  785. sid.SoundId = "rbxassetid://188712851"
  786. sid.Volume = 1
  787. sid:Play()
  788. sid.Looped = true
  789. moptions()
  790. end
  791. wait(.5)
  792. tab.Size = Vector3.new(2,2,2)
  793. end
  794. end)
  795. end
  796. end
  797.  
  798. function mc()
  799. local a = Instance.new("ScreenGui")
  800. local b = Instance.new("TextBox")
  801. local c = Instance.new("TextButton")
  802. a.Parent = p.PlayerGui
  803. a.Name = "MusicGui"
  804. b.Parent = a
  805. b.BackgroundColor3 = Color3.new(255,255,255)
  806. b.BorderColor3 = Color3.new(0,0,0)
  807. b.BorderSizePixel = 2
  808. b.Position = UDim2.new(0,300,0,375)
  809. b.Size = UDim2.new(0,200,0,35)
  810. b.Font = "SourceSans"
  811. b.FontSize = "Size14"
  812. b.Text = "SoundID"
  813. b.TextColor3 = Color3.new(0,0,0)
  814. b.Selectable = true
  815. c.Parent = a
  816. c.BackgroundColor3 = Color3.new(255,255,255)
  817. c.BorderColor3 = Color3.new(0,0,0)
  818. c.BorderSizePixel = 2
  819. c.Position = UDim2.new(0,300,0,415)
  820. c.Size = UDim2.new(0,50,0,35)
  821. c.Font = "SourceSans"
  822. c.FontSize = "Size18"
  823. c.Text = "Play"
  824. c.TextColor3 = Color3.new(0,0,0)
  825. c.MouseButton1Click:connect(function()
  826. local t = tostring(b.Text)
  827. local s = Instance.new("Sound")
  828. s.Name = "1OTabsMusic"
  829. s.Parent = game.Workspace
  830. s.Volume = 0.2
  831. s.Looped = true
  832. s.SoundId = "rbxassetid://"..t
  833. s:Play()
  834. wait(.5)
  835. moptions()
  836. a:Destroy()
  837. end)
  838. end
  839.  
  840. function moptions()
  841. local sop = {"Play","Stop","Volume+","Volume-","[D]"}
  842. local check = game.Workspace:FindFirstChild("sTabs1O")
  843. if check ~= nil then
  844. check:Destroy()
  845. else
  846. print'Checked'
  847. end
  848. local bm = Instance.new("Model")
  849. bm.Parent = game.Workspace
  850. bm.Name = "sTabs1O"
  851. for i = 1,#sop do
  852. bm = game.Workspace.sTabs1O
  853. local m = Instance.new("Model")
  854. local tab = Instance.new("Part")
  855. local sb = Instance.new("SelectionBox")
  856. local h = Instance.new("Humanoid")
  857. local cd = Instance.new("ClickDetector")
  858. m.Parent = bm
  859. m.Name = sop[i]
  860. tab.Parent = m
  861. tab.Name = "Head"
  862. tab.CanCollide = false
  863. tab.Anchored = true
  864. tab.Locked = true
  865. tab.Transparency = 0.0009
  866. tab.BottomSurface = "Smooth"
  867. tab.TopSurface = "Smooth"
  868. tab.FormFactor = "Custom"
  869. tab.Size = Vector3.new(2,2,2)
  870. tab.Position = Vector3.new(0,4,0)
  871. sb.Parent = tab
  872. sb.Adornee = tab
  873. sb.Color3 = Color3.new(255,255,255)
  874. sb.LineThickness = 0.01
  875. sb.SurfaceTransparency = 0.7
  876. sb.SurfaceColor3 = Color3.new(255,0,0)
  877. h.Parent = m
  878. h.MaxHealth = 0
  879. cd.Parent = tab
  880. local function move()
  881. coroutine.resume(coroutine.create(function()
  882. local orbit = p.Character.Torso
  883. local dist = 1 + #speeds
  884. local speed = 0.005
  885. local angle = 100 * i
  886. local o = tab
  887. local pos = o.Position
  888. while wait() do
  889. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  890. o.CFrame = CFrame.new(o.Position,orbit.Position)
  891. angle = angle + 1
  892. end
  893. end))
  894. end
  895. move()
  896. tab.ClickDetector.MouseClick:connect(function(c)
  897. if c == p then
  898. tab.Size = Vector3.new(1.5,1.5,1.5)
  899. if m.Name == "Play" then
  900. local sound = game.Workspace:FindFirstChild("1OTabsMusic")
  901. if sound ~= nil then
  902. sound:Play()
  903. else
  904. print 'Sound[Error] S = nil'
  905. end
  906. elseif m.Name == "Stop" then
  907. local sound = game.Workspace:FindFirstChild("1OTabsMusic")
  908. if sound ~= nil then
  909. sound:Stop()
  910. else
  911. print 'Sound[Error] S = nil'
  912. end
  913. elseif m.Name == "Volume+" then
  914. local sound = game.Workspace:FindFirstChild("1OTabsMusic")
  915. if sound ~= nil then
  916. sound.Volume = sound.Volume + 0.1
  917. else
  918. print 'Sound[Error] S = nil'
  919. end
  920. elseif m.Name == "Volume-" then
  921. local sound = game.Workspace:FindFirstChild("1OTabsMusic")
  922. if sound ~= nil then
  923. sound.Volume = sound.Volume - 0.1
  924. else
  925. print 'Sound[Error] S = nil'
  926. end
  927. elseif m.Name == "[D]" then
  928. local sound = game.Workspace:FindFirstChild("1OTabsMusic")
  929. if sound ~= nil then
  930. sound:Destroy()
  931. else
  932. print 'Sound[Error] S = nil'
  933. end
  934. end
  935. wait(.5)
  936. tab.Size = Vector3.new(2,2,2)
  937. end
  938. end)
  939. end
  940. end
  941.  
  942. function listp()
  943. function listp()
  944. local check = game.Workspace:FindFirstChild("sTabs1O")
  945. if check ~= nil then
  946. check:Destroy()
  947. else
  948. print'Checked'
  949. end
  950. local bm = Instance.new("Model")
  951. bm.Parent = game.Workspace
  952. bm.Name = "sTabs1O"
  953. local players = game.Players:GetChildren()
  954. for i = 1,#players do
  955. bm = game.Workspace.sTabs1O
  956. local m = Instance.new("Model")
  957. local tab = Instance.new("Part")
  958. local sb = Instance.new("SelectionBox")
  959. local h = Instance.new("Humanoid")
  960. local cd = Instance.new("ClickDetector")
  961. m.Parent = bm
  962. m.Name = players[i].Name
  963. tab.Parent = m
  964. tab.Name = "Head"
  965. tab.CanCollide = false
  966. tab.Anchored = true
  967. tab.Locked = true
  968. tab.Transparency = 0.0009
  969. tab.BottomSurface = "Smooth"
  970. tab.TopSurface = "Smooth"
  971. tab.FormFactor = "Custom"
  972. tab.Size = Vector3.new(2,2,2)
  973. tab.Position = Vector3.new(0,4,0)
  974. sb.Parent = tab
  975. sb.Adornee = tab
  976. sb.Color3 = Color3.new(0,0,0)
  977. sb.LineThickness = 0.01
  978. sb.SurfaceTransparency = 0.4
  979. sb.SurfaceColor3 = Color3.new(255,170,0)
  980. h.Parent = m
  981. h.MaxHealth = 0
  982. cd.Parent = tab
  983. local function move()
  984. coroutine.resume(coroutine.create(function()
  985. local orbit = p.Character.Torso
  986. local dist = 3 + #players
  987. local speed = 0.005
  988. local angle = 150 * i
  989. local o = tab
  990. local pos = o.Position
  991. while wait() do
  992. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(0,angle*speed,0) * CFrame.new(0,0,dist)
  993. o.CFrame = CFrame.new(o.Position,orbit.Position)
  994. angle = angle + 1
  995. end
  996. end))
  997. end
  998. move()
  999. tab.ClickDetector.MouseClick:connect(function(c)
  1000. if c == p then
  1001. local find = game.Players:FindFirstChild(m.Name)
  1002. if find ~= nil then
  1003. tab.Size = Vector3.new(1.5,1.5,1.5)
  1004. print 'PSIG[x]'
  1005. wait(.5)
  1006. tab.Size = Vector3.new(2,2,2)
  1007. end
  1008. end
  1009. end)
  1010. end
  1011. end
  1012. end
  1013.  
  1014. function ply(player)
  1015. for _,b in pairs(ban) do
  1016. if player.Name == b then
  1017. print 'PlayerAdded[C][B]'
  1018. player:Destroy()
  1019. end
  1020. end
  1021. local m = Instance.new("Model")
  1022. local tab = Instance.new("Part")
  1023. local sb = Instance.new("SelectionBox")
  1024. local h = Instance.new("Humanoid")
  1025. local cd = Instance.new("ClickDetector")
  1026. m.Parent = game.Workspace
  1027. m.Name = ("'"..player.Name.."' Has entered![NP][C]")
  1028. tab.Parent = m
  1029. tab.Name = "Head"
  1030. tab.CanCollide = false
  1031. tab.Anchored = true
  1032. tab.Locked = true
  1033. tab.Transparency = 0.0009
  1034. tab.BottomSurface = "Smooth"
  1035. tab.TopSurface = "Smooth"
  1036. tab.FormFactor = "Custom"
  1037. tab.Size = Vector3.new(2,2,2)
  1038. tab.Position = Vector3.new(0,4,0)
  1039. sb.Parent = tab
  1040. sb.Adornee = tab
  1041. sb.Color3 = Color3.new(0,0,255)
  1042. sb.LineThickness = 0.054
  1043. sb.SurfaceTransparency = 0.2
  1044. sb.SurfaceColor3 = Color3.new(0,170,255)
  1045. h.Parent = m
  1046. h.MaxHealth = 0
  1047. cd.Parent = tab
  1048. local function move()
  1049. coroutine.resume(coroutine.create(function()
  1050. local orbit = p.Character.Torso
  1051. local dist = 4
  1052. local speed = 0.05
  1053. local angle = 0
  1054. local o = tab
  1055. local pos = o.Position
  1056. while wait() do
  1057. o.CFrame = orbit.CFrame*CFrame.fromEulerAnglesXYZ(4,angle*speed,1) * CFrame.new(0,0,dist)
  1058. o.CFrame = CFrame.new(o.Position,orbit.Position)
  1059. angle = angle + 1
  1060. end
  1061. end))
  1062. end
  1063. move()
  1064. tab.ClickDetector.MouseClick:connect(function(c)
  1065. if c == p then
  1066. tab.Size = Vector3.new(1.5,1.5,1.5)
  1067. print 'PlayerAdded[Confirmed]'
  1068. wait(.5)
  1069. tab.Size = Vector3.new(2,2,2)
  1070. m:remove()
  1071. end
  1072. end)
  1073. wait(3)
  1074. for i = 1,5 do
  1075. wait(0.1)
  1076. tab.Size = Vector3.new(1.5,1.5,1.5)
  1077. wait(0.1)
  1078. tab.Size = Vector3.new(2,2,2)
  1079. end
  1080. local function autokick()
  1081. local m = game.Workspace["'"..player.Name.."' Has entered![NP][C]"]
  1082. if m == nil then
  1083. print'AutoKick[OFF]'
  1084. else
  1085. tab.Size = Vector3.new(.5,.5,.5)
  1086. tab:Destroy()
  1087. player.Character:Destroy()
  1088. player:remove()
  1089. end
  1090. end
  1091. autokick()
  1092. end
  1093. game.Players.PlayerAdded:connect(ply)
  1094.  
  1095. print('Enjoy the leaked tabs by AdminTabs!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement