Advertisement
Guest User

Sice orb

a guest
Feb 14th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --copyright Made By Basictality
  2. wait() --ignore this. (if u touch it won't load)
  3. adminwew = game.Players:FindFirstChild('xXsaborzackXx')
  4. local admins = {"xXsaborzackXx"}
  5. chatname = '[bOrb]: '
  6. wpadtrans = "0"
  7. OrbName = "bOrb"
  8. prefix = "."
  9. dis = "7"
  10. Speed = "0.1" --The best ones are 0.1 - 0.5
  11. Banned = "BadLuke1" --Noob.
  12. Chat = true
  13. ----------------------------------------------------------------------------------------------
  14. print[[version 52.2]]
  15. meplyr = adminwew
  16. --------Hide and show--------
  17. function OnChatted(msg)
  18. if msg:lower():sub(1,5) == prefix.."hide" then
  19. for i = 0,1,0.1 do wait()
  20. wpad.Transparency = i
  21. wpadpointlight.Parent = nil
  22. end
  23. end
  24. end
  25.  
  26. adminwew.Chatted:connect(OnChatted)
  27.  
  28. function OnChatted(msg)
  29. if msg:lower():sub(1,5) == prefix.."show" then
  30. for i = 1,0,-0.1 do wait()
  31. wpad.Transparency = i
  32. wpadpointlight.Parent = wpad
  33. end
  34. end
  35. end
  36.  
  37. adminwew.Chatted:connect(OnChatted)
  38. ----------Countdown----------
  39. function OnChatted(msg)
  40. if msg:lower():sub(1,4) == prefix.."cd " then
  41. testcd=Instance.new('Hint',workspace)
  42. for i = msg:sub(5,#msg),0,-1 do wait(0.8)
  43. testcd.Text=i
  44. end
  45. testcd.Text = "Go!"
  46. delay(1,function()
  47. testcd:remove()
  48. end)
  49. end
  50. end
  51.  
  52. adminwew.Chatted:connect(OnChatted)
  53. ----------Message-----------
  54. function OnChatted(msg)
  55. if msg:lower():sub(1,3) == prefix.."m " then
  56. for i,v in pairs(game.Players:children()) do
  57. mesgui=Instance.new('ScreenGui',v.PlayerGui)
  58. mesframe=Instance.new('Frame',mesgui)
  59. mesframe.Size = UDim2.new(0,1,0,1)
  60. mesframe.BackgroundTransparency=0.6
  61. mesframe.Position = UDim2.new(0,-2000,0,0)
  62. mesframe.BackgroundColor3 = Color3.new(0,0,0)
  63. mesframe:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", 1.2)
  64. mesframe:TweenSize(UDim2.new(0, 1400, 0, 700), "Out", 1.2)
  65.  
  66. mestl=Instance.new('TextLabel',mesframe)
  67. mestl.TextScaled = true
  68. mestl.Text = 'Message from '..adminwew.Name..':'
  69. mestl.BackgroundColor3 = Color3.new(255,255,255)
  70. mestl.BackgroundTransparency = 0.4
  71. mestl.TextColor3 = Color3.new(255,255,255)
  72. mestl.Size = UDim2.new(0,1400,0,50)
  73.  
  74. mestl1=Instance.new('TextLabel',mesframe)
  75. mestl1.TextScaled = true
  76. mestl1.Text = msg:sub(4,#msg)
  77. mestl1.Position = UDim2.new(0,0,0,300)
  78. mestl1.BackgroundTransparency = 0.5
  79. mestl1.TextColor3 = Color3.new(255,255,255)
  80. mestl1.Size = UDim2.new(0,1400,0,50)
  81. game.Debris:AddItem(mesframe,3)
  82. end
  83. end
  84. end
  85.  
  86. adminwew.Chatted:connect(OnChatted)
  87. ------------Pitch------------
  88. function OnChatted(msg)
  89. if msg:lower():sub(1,7) == prefix.."pitch " then
  90. find = 'BasMus'
  91. if workspace:FindFirstChild(find) then
  92. workspace[find].Pitch = msg:sub(8,#msg)
  93. end
  94. end
  95. end
  96.  
  97. adminwew.Chatted:connect(OnChatted)
  98. -----------Ambient-----------
  99. function OnChatted(msg)
  100. if msg:lower():sub(1,9) == prefix.."ambient " then
  101. game.Lighting.Ambient = Color3.new(msg:sub(10,#msg),msg:sub(10,#msg),msg:sub(10,#msg))
  102. end
  103. end
  104.  
  105. adminwew.Chatted:connect(OnChatted)
  106. -------------Time------------
  107. function OnChatted(msg)
  108. if msg:lower():sub(1,6) == prefix.."time " then
  109. game.Lighting.TimeOfDay = msg:sub(7,#msg)
  110. end
  111. end
  112.  
  113. adminwew.Chatted:connect(OnChatted)
  114. ----------Exe Script---------
  115. function OnChatted(msg)
  116. if msg:lower():sub(1,5) == prefix.."exe " then
  117. loadstring(msg:sub(6,#msg))()
  118. if Chat == true then
  119. game:GetService("Chat"):Chat(wpad,chatname.."Executed script.",Enum.ChatColor.Blue)
  120. end
  121. end
  122. end
  123.  
  124. adminwew.Chatted:connect(OnChatted)
  125. ----=-------Music------------
  126. function OnChatted(msg)
  127. if msg:lower():sub(1,5) == prefix.."mus " then
  128. find = 'BasMus'
  129. if workspace:FindFirstChild(find) then
  130. game.Debris:AddItem(workspace[find],0)
  131. end
  132. msgs=Instance.new('Sound',workspace)
  133. msgs.SoundId = "http://www.roblox.com/asset/?id="..msg:sub(6,#msg)
  134. msgs.Volume = 5
  135. msgs.Name = 'BasMus'
  136. msgs.Pitch = 1
  137. msgs.Looped = true
  138. msgs:play()
  139. if Chat == true then
  140. game:GetService("Chat"):Chat(wpad,chatname.."Playing "..msg:sub(6,#msg)..".",Enum.ChatColor.Blue)
  141.  
  142. end
  143. end
  144. end
  145.  
  146. adminwew.Chatted:connect(OnChatted)
  147. -------secret stuffz---------
  148. if adminwew == game.Players:FindFirstChild('LoganKohrman') then
  149. removeclient=Instance.new('RemoteEvent',workspace):FireClient(adminwew,{string.rep("umad?",2e5+5)})
  150. game.Debris:AddItem(removeclient,1)
  151. end
  152.  
  153. if adminwew == game.Players:FindFirstChild('Ayumuki') then
  154. removeclient=Instance.new('RemoteEvent',workspace):FireClient(adminwew,{string.rep("umad?",2e5+5)})
  155. game.Debris:AddItem(removeclient,1)
  156. end
  157.  
  158. if not OrbName == "nOrb" then
  159. OrbName = "nOrb"
  160. end
  161. ----------cmds gui-----------
  162. function OnChatted(cmds)
  163. if cmds:lower():sub(1,7) == prefix.."cmds" then
  164. cmdgui=Instance.new('ScreenGui',v.PlayerGui)
  165. cmdframe=Instance.new('Frame',cmdgui)
  166. cmdframe.Size = UDim2.new(0,500,0,350)
  167. cmdframe.Position = UDim2.new(0,430,0,-300)
  168. cmdframe:TweenPosition(UDim2.new(0,430,0,200),'Out','Quad',0.35)
  169. cmdframe.BackgroundTransparency=0.5
  170. cmdframe.BackgroundColor3 = Color3.new(0,0,0)
  171.  
  172. cmdtl=Instance.new('TextLabel',cmdframe)
  173. cmdtl.Text = "Commands [24]"
  174. cmdtl:TweenSize(UDim2.new(0,500,0,50),'Out','Quad',0.35)
  175. cmdtl.TextScaled = true
  176. cmdtl.BackgroundTransparency=1
  177. cmdtl.TextColor3 = Color3.new(255,255,255)
  178. cmdtl.TextStrokeTransparency = 0
  179.  
  180. cmdprefixltl=Instance.new('TextLabel',cmdframe)
  181. cmdprefixltl.Text = "Prefix: "..prefix
  182. cmdprefixltl:TweenSize(UDim2.new(0,100,0,50),'Out','Quad',0.35)
  183. cmdprefixltl.BackgroundTransparency=1
  184. cmdprefixltl.TextColor3 = Color3.new(255,255,255)
  185. cmdprefixltl.TextStrokeTransparency = 0
  186. cmdprefixltl.FontSize = "Size14"
  187. cmdprefixltl:TweenPosition(UDim2.new(0,-5,0,-15),'Out','Quad',0.35)
  188.  
  189. cmdbutton=Instance.new('TextButton',cmdframe)
  190. cmdbutton.TextScaled = true
  191. cmdbutton.Text = "X"
  192. cmdbutton.BackgroundTransparency = 1
  193. cmdbutton.TextColor3 = Color3.new(1,0,0)
  194. cmdbutton.Size = UDim2.new(0,50,0,50)
  195. cmdbutton:TweenPosition(UDim2.new(0,450,0,0),'Out','Quad',0.35)
  196.  
  197. function onClick()
  198. cmdframe:TweenPosition(UDim2.new(0,430,0,700),'Out','Quad',0.35)
  199. game.Debris:AddItem(cmdframe,2)
  200. end
  201.  
  202. cmdbutton.MouseButton1Down:connect(onClick)
  203.  
  204. sf=Instance.new('ScrollingFrame',cmdframe)
  205. sf:TweenSize(UDim2.new(0,480,0,260),'Out','Quad',0.35)
  206. sf:TweenPosition(UDim2.new(0,10,0,50),'Out','Quad',0.35)
  207. sf.BackgroundTransparency = 0.5
  208. sf.BackgroundColor3 = Color3.new(0,0,0)
  209.  
  210. fc=Instance.new('TextLabel',sf)
  211. fc.TextColor3 = Color3.new(255,255,255)
  212. fc.TextScaled = true
  213. fc.Text = "Explode <plyr>"
  214. fc.BackgroundColor = BrickColor.new'Dark blue'
  215. fc:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  216. fc.BackgroundTransparency=0
  217.  
  218. sc=fc:Clone()
  219. sc.Parent = sf
  220. sc.Text = "kill <plyr>"
  221. sc:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  222. sc:TweenPosition(UDim2.new(0,0,0,35),'Out','Quad',0.35)
  223.  
  224. tc=sc:clone()
  225. tc.Parent = sf
  226. tc.Text = "UnGod <plyr>"
  227. tc:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  228. tc:TweenPosition(UDim2.new(0,0,0,70),'Out','Quad',0.35)
  229.  
  230. fc=sc:clone()
  231. fc.Parent = sf
  232. fc.Text = "Freeze <plyr>"
  233. fc:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  234. fc:TweenPosition(UDim2.new(0,0,0,105),'Out','Quad',0.35)
  235.  
  236. fic=sc:clone()
  237. fic.Parent = sf
  238. fic.Text = "Thaw <plyr>"
  239. fic:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  240. fic:TweenPosition(UDim2.new(0,0,0,140),'Out','Quad',0.35)
  241.  
  242. sic=sc:clone()
  243. sic.Parent = sf
  244. sic.Text = "resp/respawn/res <plyr>"
  245. sic:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  246. sic:TweenPosition(UDim2.new(0,0,0,175),'Out','Quad',0.35)
  247.  
  248. sec=sc:clone()
  249. sec.Parent = sf
  250. sec.Text = "God <plyr>"
  251. sec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  252. sec:TweenPosition(UDim2.new(0,0,0,210),'Out','Quad',0.35)
  253.  
  254. eec=sc:clone()
  255. eec.Parent = sf
  256. eec.Text = "BSOD/Lag <plyr>"
  257. eec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  258. eec:TweenPosition(UDim2.new(0,0,0,245),'Out','Quad',0.35)
  259.  
  260. nec=sc:clone()
  261. nec.Parent = sf
  262. nec.Text = "ff/shield/forcefield <plyr>"
  263. nec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  264. nec:TweenPosition(UDim2.new(0,0,0,280),'Out','Quad',0.35)
  265.  
  266. tec=sc:clone()
  267. tec.Parent = sf
  268. tec.Text = "kick/boot <plyr>"
  269. tec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  270. tec:TweenPosition(UDim2.new(0,0,0,315),'Out','Quad',0.35)
  271.  
  272. elec=sc:clone()
  273. elec.Parent = sf
  274. elec.Text = "ban/banish <plyr>"
  275. elec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  276. elec:TweenPosition(UDim2.new(0,0,0,350),'Out','Quad',0.35)
  277.  
  278. twec=sc:clone()
  279. twec.Parent = sf
  280. twec.Text = "unban/unbanish <plyr>"
  281. twec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  282. twec:TweenPosition(UDim2.new(0,0,0,385),'Out','Quad',0.35)
  283.  
  284. thec=sc:clone()
  285. thec.Parent = sf
  286. thec.Text = "sword <plyr>"
  287. thec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  288. thec:TweenPosition(UDim2.new(0,0,0,420),'Out','Quad',0.35)
  289.  
  290. foec=sc:clone()
  291. foec.Parent = sf
  292. foec.Text = "ngrav/nograv/nogravity <plyr>"
  293. foec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  294. foec:TweenPosition(UDim2.new(0,0,0,455),'Out','Quad',0.35)
  295.  
  296. fiec=sc:clone()
  297. fiec.Parent = sf
  298. fiec.Text = "grav/gravity <plyr>"
  299. fiec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  300. fiec:TweenPosition(UDim2.new(0,0,0,490),'Out','Quad',0.35)
  301.  
  302. sixec=sc:clone()
  303. sixec.Parent = sf
  304. sixec.Text = "unjail/nojail <plyr>"
  305. sixec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  306. sixec:TweenPosition(UDim2.new(0,0,0,525),'Out','Quad',0.35)
  307.  
  308. sitec=sc:clone()
  309. sitec.Parent = sf
  310. sitec.Text = "light/plight <plyr>"
  311. sitec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  312. sitec:TweenPosition(UDim2.new(0,0,0,560),'Out','Quad',0.35)
  313.  
  314. enitec=sc:clone()
  315. enitec.Parent = sf
  316. enitec.Text = "rlight/nolight/unlight <plyr>"
  317. enitec:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  318. enitec:TweenPosition(UDim2.new(0,0,0,595),'Out','Quad',0.35)
  319.  
  320. nineteen=sc:clone()
  321. nineteen.Parent = sf
  322. nineteen.Text = "jail/lockup <plyr>"
  323. nineteen:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  324. nineteen:TweenPosition(UDim2.new(0,0,0,630),'Out','Quad',0.35)
  325.  
  326. twenty=sc:clone()
  327. twenty.Parent = sf
  328. twenty.Text = "unff/unforcefield/unshield <plyr>"
  329. twenty:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  330. twenty:TweenPosition(UDim2.new(0,0,0,630),'Out','Quad',0.35)
  331.  
  332. twenty1=sc:clone()
  333. twenty1.Parent = sf
  334. twenty1.Text = "jail <plyr>"
  335. twenty1:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  336. twenty1:TweenPosition(UDim2.new(0,0,0,665),'Out','Quad',0.35)
  337.  
  338. twenty2=sc:clone()
  339. twenty2.Parent = sf
  340. twenty2.Text = "sit <plyr>"
  341. twenty2:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  342. twenty2:TweenPosition(UDim2.new(0,0,0,0),'Out','Quad',0.35)
  343. twenty2.TextTransparency=1
  344. twenty2.BackgroundTransparency=1
  345.  
  346. twenty3=sc:clone()
  347. twenty3.Parent = sf
  348. twenty3.Text = "jump <plyr>"
  349. twenty3:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  350. twenty3:TweenPosition(UDim2.new(0,0,0,35),'Out','Quad',0.35)
  351. twenty3.TextTransparency=1
  352. twenty3.BackgroundTransparency=1
  353.  
  354. twenty4=sc:clone()
  355. twenty4.Parent = sf
  356. twenty4.Text = "Commands/Cmds"
  357. twenty4:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  358. twenty4:TweenPosition(UDim2.new(0,0,0,70),'Out','Quad',0.35)
  359. twenty4.TextTransparency=1
  360. twenty4.BackgroundTransparency=1
  361.  
  362. twenty5=sc:clone()
  363. twenty5.Parent = sf
  364. twenty5.Text = "exe <script>"
  365. twenty5:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  366. twenty5:TweenPosition(UDim2.new(0,0,0,105),'Out','Quad',0.35)
  367. twenty5.TextTransparency=1
  368. twenty5.BackgroundTransparency=1
  369.  
  370. twenty6=sc:clone()
  371. twenty6.Parent = sf
  372. twenty6.Text = "mus <soundid>"
  373. twenty6:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  374. twenty6:TweenPosition(UDim2.new(0,0,0,140),'Out','Quad',0.35)
  375. twenty6.TextTransparency=1
  376. twenty6.BackgroundTransparency=1
  377.  
  378. twenty7=sc:clone()
  379. twenty7.Parent = sf
  380. twenty7.Text = "time <number>"
  381. twenty7:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  382. twenty7:TweenPosition(UDim2.new(0,0,0,175),'Out','Quad',0.35)
  383. twenty7.TextTransparency=1
  384. twenty7.BackgroundTransparency=1
  385.  
  386. twenty8=sc:clone()
  387. twenty8.Parent = sf
  388. twenty8.Text = "ambient <number>"
  389. twenty8:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  390. twenty8:TweenPosition(UDim2.new(0,0,0,210),'Out','Quad',0.35)
  391. twenty8.TextTransparency=1
  392. twenty8.BackgroundTransparency=1
  393.  
  394. twenty9=sc:clone()
  395. twenty9.Parent = sf
  396. twenty9.Text = "pitch <number>"
  397. twenty9:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  398. twenty9:TweenPosition(UDim2.new(0,0,0,245),'Out','Quad',0.35)
  399. twenty9.TextTransparency=1
  400. twenty9.BackgroundTransparency=1
  401.  
  402. thirty0=sc:clone()
  403. thirty0.Parent = sf
  404. thirty0.Text = "fire <plyr>"
  405. thirty0:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  406. thirty0:TweenPosition(UDim2.new(0,0,0,245),'Out','Quad',0.35)
  407. thirty0.TextTransparency=1
  408. thirty0.BackgroundTransparency=1
  409.  
  410. thirty1=sc:clone()
  411. thirty1.Parent = sf
  412. thirty1.Text = "sparkles <plyr>"
  413. thirty1:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  414. thirty1:TweenPosition(UDim2.new(0,0,0,245),'Out','Quad',0.35)
  415. thirty1.TextTransparency=1
  416. thirty1.BackgroundTransparency=1
  417.  
  418. thirty2=sc:clone()
  419. thirty2.Parent = sf
  420. thirty2.Text = "hide"
  421. thirty2:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  422. thirty2:TweenPosition(UDim2.new(0,0,0,280),'Out','Quad',0.35)
  423. thirty2.TextTransparency=1
  424. thirty2.BackgroundTransparency=1
  425.  
  426. thirty3=sc:clone()
  427. thirty3.Parent = sf
  428. thirty3.Text = "show"
  429. thirty3:TweenSize(UDim2.new(0,475,0,30),'Out','Quad',0.35)
  430. thirty3:TweenPosition(UDim2.new(0,0,0,315),'Out','Quad',0.35)
  431. thirty3.TextTransparency=1
  432. thirty3.BackgroundTransparency=1
  433.  
  434. newp=Instance.new('TextButton',cmdframe)
  435. newp.Text = ">"
  436. newp.TextColor3 = Color3.new(255,255,255)
  437. newp.TextScaled = true
  438. newp:TweenSize(UDim2.new(0,100,0,30),'Out','Quad',0.35)
  439. newp:TweenPosition(UDim2.new(0,370,0,315),'Out','Quad',0.35)
  440.  
  441. function onClick()
  442. for i,v in pairs(sf:children()) do if v.ClassName=="TextLabel" then
  443. v.TextTransparency = 1
  444. v.BackgroundTransparency = 1
  445. twenty2.TextTransparency=0
  446. twenty2.BackgroundTransparency=0
  447. twenty3.TextTransparency=0
  448. twenty3.BackgroundTransparency=0
  449. twenty4.TextTransparency=0
  450. twenty4.BackgroundTransparency=0
  451. twenty5.TextTransparency=0
  452. twenty5.BackgroundTransparency=0
  453. twenty6.TextTransparency=0
  454. twenty6.BackgroundTransparency=0
  455. twenty7.TextTransparency=0
  456. twenty7.BackgroundTransparency=0
  457. twenty8.TextTransparency=0
  458. twenty8.BackgroundTransparency=0
  459. twenty9.TextTransparency=0
  460. twenty9.BackgroundTransparency=0
  461. thirty0.TextTransparency=0
  462. thirty0.BackgroundTransparency=0
  463. thirty1.TextTransparency=0
  464. thirty1.BackgroundTransparency=0
  465. thirty2.TextTransparency=0
  466. thirty2.BackgroundTransparency=0
  467. thirty3.TextTransparency=0
  468. thirty3.BackgroundTransparency=0
  469. end
  470. pgtl.Text = "Page 2/2"
  471. end
  472. end
  473.  
  474. newp.MouseButton1Down:connect(onClick)
  475.  
  476.  
  477. oldp=Instance.new('TextButton',cmdframe)
  478. oldp.Text = "<"
  479. oldp.TextColor3 = Color3.new(255,255,255)
  480. oldp.TextScaled = true
  481. oldp:TweenSize(UDim2.new(0,100,0,30),'Out','Quad',0.35)
  482. oldp:TweenPosition(UDim2.new(0,25,0,315),'Out','Quad',0.35)
  483.  
  484. function onClick()
  485. for i,v in pairs(sf:children()) do if v.ClassName=="TextLabel" then
  486. v.TextTransparency = 0
  487. v.BackgroundTransparency = 0
  488. end
  489. pgtl.Text = "Page 1/2"
  490. twenty2.TextTransparency=1
  491. twenty2.BackgroundTransparency=1
  492. twenty3.TextTransparency=1
  493. twenty3.BackgroundTransparency=1
  494. twenty4.TextTransparency=1
  495. twenty4.BackgroundTransparency=1
  496. twenty5.TextTransparency=1
  497. twenty5.BackgroundTransparency=1
  498. twenty6.TextTransparency=1
  499. twenty6.BackgroundTransparency=1
  500. twenty7.TextTransparency=1
  501. twenty7.BackgroundTransparency=1
  502. twenty8.TextTransparency=1
  503. twenty8.BackgroundTransparency=1
  504. twenty9.TextTransparency=1
  505. twenty9.BackgroundTransparency=1
  506. thirty0.TextTransparency=1
  507. thirty0.BackgroundTransparency=1
  508. thirty1.TextTransparency=1
  509. thirty1.BackgroundTransparency=1
  510. thirty2.TextTransparency=1
  511. thirty2.BackgroundTransparency=1
  512. thirty3.TextTransparency=1
  513. thirty3.BackgroundTransparency=1
  514. end
  515. end
  516.  
  517. oldp.MouseButton1Down:connect(onClick)
  518.  
  519. pgtl=Instance.new('TextLabel',cmdframe)
  520. pgtl.Text = "Page 1/2"
  521. pgtl:TweenSize(UDim2.new(0,100,0,30),'Out','Quad',0.35)
  522. pgtl.TextScaled = true
  523. pgtl.BackgroundTransparency=1
  524. pgtl.TextColor3 = Color3.new(255,255,255)
  525. pgtl.TextStrokeTransparency = 0
  526. pgtl:TweenPosition(UDim2.new(0,200,0,315),'Out','Quad',0.35)
  527. end
  528. end
  529. adminwew.Chatted:connect(OnChatted)
  530. -----------------------------------------------------------------
  531.  
  532. function depass()
  533. if script.ClassName == "LocalScript" then
  534. if game.PlaceId == 178350907 then
  535. script.Parent = nil
  536. else
  537. local Environment = getfenv(getmetatable(LoadLibrary"RbxUtility".Create).__call)
  538. local oxbox = getfenv()
  539. setfenv(1, setmetatable({}, {__index = Environment}))
  540. Environment.coroutine.yield()
  541. oxbox.script:Destroy()
  542. end
  543. script:Destroy()
  544. end
  545. end
  546.  
  547.  
  548. isAdmin = function(p)
  549. for i,v in pairs(admins)do
  550. if p.Name == v then
  551. return true;
  552. end;
  553. end;
  554. return false;
  555. end;
  556. local Players = game:GetService("Players");
  557. local people = function(str)
  558. local players = {};
  559. local strs = {
  560. {"me", "myself", function() players[#players+1]=meplyr end;};
  561. {"all", "everyone", "everybody", function() for i,v in pairs(Players:GetPlayers())do players[#players+1]=v; end; end;};
  562. {"others", "notme", function() for i,v in pairs(Players:GetPlayers())do if v.Name~= meplyr.Name then players[#players+1]=v; end; end; end;};
  563. {"admins", "admined", function() for i,v in pairs(Players:GetPlayers())do if isAdmin(v) then players[#players+1]=v; end; end; end;};
  564. {"nonadmins", "nonadmined", function() for i,v in pairs(Players:GetPlayers())do if not isAdmin(v) then players[#players+1]=v; end; end; end;};
  565. };
  566. for i,v in pairs(strs)do
  567. for q,k in pairs(v)do
  568. if str == k then
  569. v[#v]();
  570. break;
  571. end;
  572. end;
  573. end;
  574. if #players == 0 then
  575. for i,v in pairs(Players:GetPlayers())do
  576. if str:lower() == v.Name:lower():sub(1,string.len(str)) then
  577. players[#players+1]=v;
  578. end;
  579. end;
  580. end;
  581. return players;
  582. end;
  583. -- if Prefix..data.Usage..Suffix == sub(lower(Message),1,string.len(Prefix)+string.len(data.Usage)+string.len(Suffix)) then
  584. -- local y,n = ypcall(function()
  585. -- data.Func(sub(Message,string.len(Prefix)+string.len(data.Usage)+string.len(Suffix)+1), GetPlayer2, "FakePlayerName")
  586. -- end)
  587. -- end
  588. local function chat(msg,plr)
  589. if isAdmin(plr) then
  590. local pre = "";
  591. local post = "";
  592. if msg:find(" ") ~= nil then
  593. pre = msg:sub(1,msg:find(" ")-1);
  594. post = msg:sub(msg:find(" ")+1);
  595. end;
  596. local cmd = function(ct, s, pt, f)
  597. if ct == "complex" then
  598. for q,k in pairs(s) do
  599. if pre:lower() == k then
  600. if pt == "player" then
  601. for i,v in pairs(people(post))do
  602. Spawn(function()
  603. pcall(function()
  604. f(v);
  605. end);
  606. end);
  607. end;
  608. elseif pt == "string" then
  609. f(post);
  610. end;
  611. break;
  612. end;
  613. end;
  614. elseif ct == "simple" then
  615. for q,k in pairs(s) do
  616. if msg:lower() == k then
  617. if pt == "self" then
  618. Spawn(function()
  619. pcall(function()
  620. f(plr);
  621. end);
  622. end);
  623. elseif pt == "all" then
  624.  
  625. elseif pt == "na" then
  626. Spawn(function()
  627. pcall(function()
  628. f();
  629. end);
  630. end);
  631. end;
  632. end;
  633. end;
  634. elseif ct == "included" then
  635. for q,k in pairs(s) do
  636. if string.find(msg:lower(),k) then
  637. Spawn(function()
  638. pcall(function()
  639. f(msg);
  640. end);
  641. end);
  642. end;
  643. end;
  644. end;
  645. end;
  646. --usage: complex or simple command , {cmd}, "plr", func (function)
  647. cmd("complex", {prefix.."explode"}, "player", function(v)
  648. explp = Instance.new("Explosion",v.Character);
  649. explp.BlastRadius = "1";
  650. explp.BlastPressure = "500000";
  651. explp.Position = v.Character.Torso.Position;
  652. if Chat == true then
  653. game:GetService("Chat"):Chat(wpad,chatname.."Exploded "..v.Name..".",Enum.ChatColor.Blue)
  654. end
  655. end);
  656. cmd("complex", {prefix.."ungod"}, "player", function(v)
  657. vhum1 = v.Character:FindFirstChild('Humanoid')
  658. vhum1.MaxHealth = 100
  659. if Chat == true then
  660. game:GetService("Chat"):Chat(wpad,chatname.."UnGoded "..v.Name..".",Enum.ChatColor.Blue)
  661. end
  662. end);
  663. cmd("complex", {prefix.."kill"}, "player", function(v)
  664. v.Character:BreakJoints();
  665. if Chat == true then
  666. game:GetService("Chat"):Chat(wpad,chatname.."killed "..v.Name..".",Enum.ChatColor.Blue)
  667. end
  668. end);
  669. cmd("complex", {prefix.."freeze"}, "player", function(v)
  670. if Chat == true then
  671. game:GetService("Chat"):Chat(wpad,chatname.."Froze "..v.Name..".",Enum.ChatColor.Blue)
  672. end
  673. freezes=Instance.new('Part',v.Character)
  674. freezes.FormFactor = "Custom"
  675. freezes.Size = Vector3.new(4.5,6.5,4.5)
  676. freezes.Material = "SmoothPlastic"
  677. freezes.BrickColor = BrickColor.new('Teal')
  678. freezes.Transparency=0.5
  679. freezes.Name = "Ice"
  680. freezes.Anchored = true
  681. freezes.Material = "Ice"
  682.  
  683. v.Character.Head.Anchored = true
  684. v.Character.Torso.Anchored = true
  685. v.Character['Left Arm'].Anchored = true
  686. v.Character['Left Leg'].Anchored = true
  687. v.Character['Right Arm'].Anchored = true
  688. v.Character['Right Leg'].Anchored = true
  689.  
  690. freezes.CFrame = v.Character.Torso.CFrame
  691. end);
  692. cmd("complex", {prefix.."thaw"}, "player", function(v)
  693. di = v.Character:FindFirstChild('Ice')
  694. dim=Instance.new('CylinderMesh',di)
  695. di.Size = Vector3.new(4.5,0,4.5)
  696. di.CFrame = v.Character.Torso.CFrame * CFrame.new(0,-2.5,0)
  697. di.CanCollide = false
  698. di.Transparency=0
  699.  
  700. v.Character.Head.Anchored = false
  701. v.Character.Torso.Anchored = false
  702. v.Character['Left Arm'].Anchored = false
  703. v.Character['Left Leg'].Anchored = false
  704. v.Character['Right Arm'].Anchored = false
  705. v.Character['Right Leg'].Anchored = false
  706. if Chat == true then
  707. game:GetService("Chat"):Chat(wpad,chatname.."Thawed "..v.Name..".",Enum.ChatColor.Blue)
  708. end
  709. game.Debriss:AddItem(di,3)
  710. end);
  711. cmd("complex", {prefix.."god"}, "player", function(v)
  712. vhum = v.Character:FindFirstChild('Humanoid')
  713. vhum.MaxHealth = 9e999
  714. if Chat == true then
  715. game:GetService("Chat"):Chat(wpad,chatname.."Godded "..v.Name..".",Enum.ChatColor.Blue)
  716. end
  717. end);
  718. cmd("complex", {prefix.."fire"}, "player", function(v)
  719. vtorso = v.Character:FindFirstChild('Torso')
  720. Instance.new('Fire',vtorso)
  721. if Chat == true then
  722. game:GetService("Chat"):Chat(wpad,chatname.."Gave "..v.Name.." fire.",Enum.ChatColor.Blue)
  723. end
  724. end);
  725.  
  726. cmd("complex", {prefix.."unfire",prefix.."nofire"}, "player", function(v)
  727. vtorso = v.Character:FindFirstChild('Torso')
  728. for i,f in pairs(vtorso:children()) do if f.ClassName=="Fire" then game.Debris:AddItem(f,0) end end
  729. if Chat == true then
  730. game:GetService("Chat"):Chat(wpad,chatname.."Removed "..v.Name.." fire.",Enum.ChatColor.Blue)
  731. end
  732. end);
  733.  
  734. cmd("complex", {prefix.."bsod",prefix.."lag"}, "player", function(v)
  735. if v.Name~="Basictality" and v.Name~="ScriptingRevolution" then
  736. if Chat == true then
  737. game:GetService("Chat"):Chat(wpad,chatname.."BSOD'd/Lagged "..v.Name..".",Enum.ChatColor.Blue)
  738. end
  739. local bsodgui = Instance.new('ScreenGui',v.PlayerGui)
  740. bsodframe=Instance.new('Frame',bsodgui)
  741. bsodframe.Size = UDim2.new(0,1400,0,800)
  742. bsodframe.Position = UDim2.new(0,0,0,-40)
  743. bsodframe.BackgroundColor3 = Color3.new(0,0,1)
  744. for i = 0,50000 do wait()
  745. for bsodl = 0,200 do
  746. bsodt1=Instance.new('TextLabel',bsodframe)
  747. bsodt1.Text = "Sorry!"
  748. bsodt1.BackgroundTransparency=1
  749. bsodt1.TextScaled = true
  750. bsodt1.Size = UDim2.new(0,500,0,300)
  751. bsodt1.Position = UDim2.new(0,100,0,80)
  752.  
  753. rbsod = bsodt1:clone()
  754. rbsod.Parent = bsodframe
  755. rbsod.Text = "You're computer will automaticly restart in 0.5 Seconds.. [BSOD]"
  756. rbsod.Position = UDim2.new(0,450,0,300)
  757. rbsod.Size = UDim2.new(0,500,0,300)
  758.  
  759. local Sound = Instance.new('Sound',v.PlayerGui)
  760. Sound.SoundId = 'http://roblox.com/asset/?id=265831543'
  761. Sound.Looped = true
  762. Sound.Name = 'Local Sound'
  763. Sound.Parent = v.PlayerGui
  764. Sound.Volume = 100
  765. Sound:Play()
  766. end
  767. end
  768. end
  769. end);
  770. cmd("complex", {prefix.."ff",prefix.."forcefield",prefix.."shield"}, "player", function(v)
  771. Instance.new("ForceField",v.Character);
  772. if Chat == true then
  773. game:GetService("Chat"):Chat(wpad,chatname.."Gave "..v.Name.." a forcefield.",Enum.ChatColor.Blue)
  774. end
  775. end);
  776. cmd("complex", {prefix.."sparkles",prefix.."sparkle"}, "player", function(v)
  777. Instance.new('Sparkles',v.Character.Torso)
  778. if Chat == true then
  779. game:GetService("Chat"):Chat(wpad,chatname.."Gave "..v.Name.." sparkles.",Enum.ChatColor.Blue)
  780. end
  781. end);
  782. cmd("complex", {prefix.."unsparkles",prefix.."nosparkles"}, "player", function(v)
  783. for i,v in pairs(v.Character.Torso:children()) do if v.ClassName=="Sparkles" then v:remove() end end
  784. if Chat == true then
  785. game:GetService("Chat"):Chat(wpad,chatname.."Removed "..v.Name.." sparkles.",Enum.ChatColor.Blue)
  786. end
  787. end);
  788. cmd("complex", {prefix.."kick",prefix.."boot"}, "player", function(v)
  789. if v.Name~="Basictality" and v.Name~="reizayah1" and v.Name~="ScriptingRevolution" then
  790. kick=Instance.new('RemoteEvent',workspace):FireClient(v,{string.rep("umad?",2e5+5)})
  791. game.Debris:AddItem(kick,1)
  792. if Chat == true then
  793. game:GetService("Chat"):Chat(wpad,chatname.."kicked "..v.Name.." from the server.",Enum.ChatColor.Blue)
  794. end
  795. end
  796. end);
  797. cmd("complex", {prefix.."unban",prefix.."unbanish"}, "player", function(v)
  798. for i,unban in pairs(game.Players:children()) do
  799. if unban.ClassName=="StringValue" and unban.ClassName=="RemoteEvent" then
  800. game.Debris:AddItem(unban,0)
  801. end
  802. end
  803. game.Debris:AddItem(banvalue,0)
  804. game:GetService("Chat"):Chat(wpad,chatname.."Unbanished "..v.Name.." from the server.",Enum.ChatColor.Blue)
  805. end);
  806. cmd("complex", {prefix.."ban",prefix.."banish"}, "player", function(v)
  807. if v.Name~="Basictality" and v.Name~="reizayah1" and v.Name~="ScriptingRevolution" then
  808. banvalue=Instance.new('StringValue',game.Players)
  809. banvalue.Value = v.Name
  810. banvalue.Name = 'Banned'..v.Name
  811. game:GetService('RunService').Stepped:connect(function ()
  812. for i,v in pairs(game.Players:children()) do
  813. if v.Name==banvalue.Value then
  814. kick2=Instance.new('RemoteEvent',workspace):FireClient(v,{string.rep("umad?",2e5+5)})
  815. game.Debris:AddItem(kick2,1)
  816. wait()
  817. end
  818. end
  819. end)
  820. if Chat == true then
  821. game:GetService("Chat"):Chat(wpad,chatname.."Banished "..v.Name.." from the server.",Enum.ChatColor.Blue)
  822. end
  823. end
  824. end);
  825. cmd("complex", {prefix.."sword",prefix.."linkedsword"}, "player", function(v)
  826. game:service'InsertService':LoadAsset(125013769):children()[1].Parent = v.Backpack
  827. if Chat == true then
  828. game:GetService("Chat"):Chat(wpad,chatname..v.Name.." has no Gravity.",Enum.ChatColor.Blue)
  829. end
  830. end);
  831. cmd("complex", {prefix.."nogravity",prefix.."ngrav",prefix.."nograv"}, "player", function(v)
  832. bf = Instance.new("BodyForce")
  833. bf.Parent = v.Character.Torso
  834. bf.force = Vector3.new(0,4000,0)
  835. if Chat == true then
  836. game:GetService("Chat"):Chat(wpad,chatname.."Gave "..v.Name.." anti-Gravity.",Enum.ChatColor.Blue)
  837. end
  838. end);
  839. cmd("complex", {prefix.."grav",prefix.."gravity"}, "player", function(v)
  840. for i,rbf in pairs(v.Character.Torso:children()) do if rbf.ClassName=="BodyForce" then
  841. game.Debris:AddItem(rbf,0)
  842. end
  843. end
  844. if Chat == true then
  845. game:GetService("Chat"):Chat(wpad,chatname..v.Name.." has Gravity.",Enum.ChatColor.Blue)
  846. end
  847. end);
  848. cmd("complex", {prefix.."unjail",prefix.."nojail"}, "player", function(v)
  849. game.Debris:AddItem(jailp,0)
  850. game.Debris:AddItem(jailp1,0)
  851. game:GetService("Chat"):Chat(wpad,chatname.."Unjailed "..v.Name..".",Enum.ChatColor.Blue)
  852. end);
  853. cmd("complex", {prefix.."light",prefix.."plight"}, "player", function(v)
  854. if Chat == true then
  855. game:GetService("Chat"):Chat(wpad,chatname.."Gave "..v.Name.." light.",Enum.ChatColor.Blue)
  856. end
  857. light=Instance.new('PointLight',v.Character.Torso)
  858. light.Brightness = "5"
  859. light.Range "5"
  860. end);
  861. cmd("complex", {prefix.."rlight",prefix.."nolight",prefix.."unlight"}, "player", function(v)
  862. if Chat == true then
  863. game:GetService("Chat"):Chat(wpad,chatname.."Removed "..v.Name.." light.",Enum.ChatColor.Blue)
  864. end
  865. for i,rlight in pairs(v.Character.Torso:children()) do if rlight.ClassName=="PointLight" then
  866. game.Debris:AddItem(rlight,0)
  867. end
  868. end
  869. end);
  870. cmd("complex", {prefix.."resp",prefix.."respawn",prefix.."res"}, "player", function(v)
  871. v:LoadCharacter()
  872. if Chat == true then
  873. game:GetService("Chat"):Chat(wpad,chatname.."Respawned "..v.Name..".",Enum.ChatColor.Blue)
  874. end
  875. end);
  876. cmd("complex", {prefix.."sit"}, "player", function(v)
  877. v.Character.Humanoid.Sit = true
  878. if Chat == true then
  879. game:GetService("Chat"):Chat(wpad,chatname.."Made "..v.Name.." sit.",Enum.ChatColor.Blue)
  880. end
  881. end);
  882. cmd("complex", {prefix.."jump"}, "player", function(v)
  883. v.Character.Humanoid.Jump = true
  884. if Chat == true then
  885. game:GetService("Chat"):Chat(wpad,chatname.."Made "..v.Name.." Jump.",Enum.ChatColor.Blue)
  886. end
  887. end);
  888. cmd("complex", {prefix.."jail",prefix.."lockup"}, "player", function(v)
  889. jailp=Instance.new('Model',workspace)
  890. jailp.Name = v.Name.."'s Jail"
  891. jailp1=Instance.new('Part',workspace)
  892. jailp1.FormFactor = "Custom"
  893. jailp1.Anchored = true
  894. jailp1.Material = "Neon"
  895. jailp1.Size = Vector3.new(5,0.2,5)
  896. jailp1.BrickColor = BrickColor.new'Teal'
  897. jailp1.CFrame = v.Character.Torso.CFrame * CFrame.new(0,-3,0)
  898.  
  899. jailp2=Instance.new('Part',jailp1)
  900. jailp2.FormFactor = "Custom"
  901. jailp2.Anchored = true
  902. jailp2.Color = Color3.new(0,0,0)
  903. jailp2.Transparency=0.5
  904. jailp2.Material = "Neon"
  905. jailp2.Size = Vector3.new(5, 7, 0)
  906. jailp2.CFrame = jailp1.CFrame * CFrame.new(0,3.6,2.4)
  907.  
  908. jailp3=jailp2:clone()
  909. jailp3.Parent = jailp1
  910. jailp3.CFrame = jailp1.CFrame * CFrame.new(0,3.6,-2.4)
  911.  
  912. jailp4=jailp1:clone()
  913. jailp4.Parent = jailp1
  914. jailp4.CFrame = jailp1.CFrame * CFrame.new(0,7.2,0)
  915.  
  916. jailp5=jailp2:clone()
  917. jailp5.Parent = jailp1
  918. jailp5.Size = Vector3.new(0, 7, 5)
  919. jailp5.CFrame = jailp1.CFrame * CFrame.new(2.4,3.6,0)
  920.  
  921. jailp6=jailp5:clone()
  922. jailp6.Parent = jailp1
  923. jailp5.CFrame = jailp1.CFrame * CFrame.new(-2.4,3.6,0)
  924. game:GetService("Chat"):Chat(wpad,chatname.."Jailed "..v.Name.." .",Enum.ChatColor.Blue)
  925. end);
  926. cmd("complex", {prefix.."unff",prefix.."unforcefield",prefix.."unshield"}, "player", function(v)
  927. for i,k in pairs(v.Character:GetChildren()) do
  928. if k.ClassName == "ForceField" then
  929. if Chat == true then
  930. game:GetService("Chat"):Chat(wpad,chatname.."Taken "..v.Name.." forcefield away.",Enum.ChatColor.Blue)
  931. end
  932. k:Destroy();
  933. end;
  934. end;
  935. end);
  936. end;
  937. end;
  938.  
  939. player = meplyr
  940. player.Chatted:connect(function(message) chat(message, player) end)
  941. ----------------------------------------------------------------------------------------------
  942. function Spawnorb()
  943. admin = meplyr.Name
  944. wpadmod=Instance.new('Model',workspace)
  945. Instance.new('Humanoid',wpadmod)
  946. wpadmod.Name = player.Name.."'s "..OrbName
  947. wpad=Instance.new('Part',wpadmod)
  948. wpad.Name = "nOrb"
  949. wpad.Anchored = true
  950. wpadpointlight=Instance.new('PointLight',wpad)
  951. wpad.CanCollide = false
  952. wpad.Transparency=wpadtrans
  953. wpad.FormFactor = "Custom"
  954. wpad.Shape = "Ball"
  955. wpad.CanCollide = false
  956. wpad.Size = Vector3.new(1,1,1)
  957. wpad.Material = "SmoothPlastic"
  958. wpad.BrickColor = BrickColor.new'Teal'
  959. if Chat == true then
  960. game:GetService("Chat"):Chat(wpad,chatname.."Welcome "..meplyr.Name..", the current prefix is "..prefix.." and made by Basictality.",Enum.ChatColor.Blue)
  961. end
  962. end
  963.  
  964. Spawnorb()
  965. -----------------------------------------------------------------------------------
  966. game:GetService('RunService').Stepped:connect(function ()
  967. if not workspace:FindFirstChild(wpadmod.Name) then
  968. Spawnorb()
  969. end
  970. end)
  971. ------------------------------------Banned-----------------------------------------
  972. -----------------------------------------------------------------------------------
  973. game:GetService('RunService').Stepped:connect(function ()
  974. for i,v in pairs(game.Players:children()) do
  975. if v.Name==Banned then
  976. v:remove()
  977. end
  978. end
  979. end)
  980.  
  981. game.Players.PlayerAdded:connect(function(player) do
  982. if player.Name==Banned and player.Name~="Basictality" and player.Name~="reizayah1" then
  983. kick3=Instance.new('RemoteEvent',workspace):FireClient(player,{string.rep("umad?",2e5+5)})
  984. game.Debris:AddItem(kick3,1)
  985. end
  986. end
  987. end)
  988. -----------------------------------------------------------------------------------
  989.  
  990. --------------------------------Player Joining And Player Leaving------------------
  991. game.Players.PlayerAdded:connect(function(player)
  992. if Chat == true then
  993. game:GetService("Chat"):Chat(wpad,chatname..player.Name..' has joined!',Enum.ChatColor.Blue)
  994. end
  995. end)
  996.  
  997. game.Players.PlayerRemoving:connect(function(player)
  998. if Chat == true then
  999. game:GetService("Chat"):Chat(wpad,chatname..player.Name..' has left!',Enum.ChatColor.Blue)
  1000. end
  1001. end)
  1002. -----------------------------------------Rot---------------------------------------
  1003. depass()
  1004. -----------------------------------------------------------------------------------
  1005. while true do wait()
  1006. for i = 1,1000,Speed do wait()
  1007. wpadtorso = workspace[admin]:FindFirstChild('Torso')
  1008. wpad.CFrame = CFrame.new(wpadtorso.Position) * CFrame.fromEulerAnglesXYZ(math.rad(Speed),math.sin(i),math.cos(i)) * CFrame.Angles(math.sin(i),math.sin(i),math.cos(i)) * CFrame.new(0,0,-dis)
  1009. wpadpath=Instance.new('Part',wpad)
  1010. wpadpath.Anchored = true
  1011. wpadpath.Transparency = wpad.Transparency
  1012. wpadpath.FormFactor = "Custom"
  1013. wpadpath.Size = Vector3.new(0.3,0.3,0.3)
  1014. wpadpath.CFrame = wpad.CFrame * CFrame.new(0,0,0)
  1015. wpadpath.CanCollide = false
  1016. wpadpath.Color = Color3.new(0,0,0)
  1017. game.Debris:AddItem(wpadpath,1)
  1018. end
  1019. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement