Advertisement
KINGOFCOOL

Untitled

Jan 14th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.80 KB | None | 0 0
  1. local Settings={["Un_Removable"]= "On"}
  2. local function mFloor(x) return x - x % 1 end
  3. local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on"
  4. if Un_Removable then
  5. Game.Workspace.DescendantRemoving:connect(function(Child)
  6. if not Remove_At_Will and Child == script then
  7. script:Clone().Parent = Game.Workspace
  8. end
  9. end)
  10. end
  11. local Owners = "CHAOSxFIGHTER"
  12. local Player = game.Players:findFirstChild(Owners)
  13. local RISE = 5
  14. local FOLLOW = true
  15. local M = Instance.new("Model")
  16. local H = Instance.new("Humanoid")
  17. M.Parent = Player.Character
  18. H.Parent = M
  19. H.MaxHealth = 0
  20. H.Health = 0
  21. M.Name = script.Name.."CHAOTIC orb's orb :P !"
  22. local p = Instance.new("Part")
  23. local BP = Instance.new("BodyPosition")
  24. local BG = Instance.new("BodyGyro")
  25. local SPL = Instance.new("SelectionPartLasso")
  26. BP.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  27. SPL.Parent = p
  28. p.BrickColor = BrickColor.new("Royal purple")
  29. f=Instance.new("Fire")
  30. f.Name = "RedFire"
  31. f.Parent=p
  32. f.Heat = 3
  33. f.Size = 2
  34. f.Color=Color3.new(255,0,0)
  35. f.SecondaryColor = Color3.new(0,0,0)
  36. f=Instance.new("Fire")
  37. f.Name = "GreenFire"
  38. f.Parent=p
  39. f.Heat = 3
  40. f.Size = 2
  41. f.Color=Color3.new(0,255,0)
  42. f.SecondaryColor = Color3.new(0,0,0)
  43. f=Instance.new("Fire")
  44. f.Name = "BlueFire"
  45. f.Parent=p
  46. f.Heat = 3
  47. f.Size = 2
  48. f.Color=Color3.new(0,0,255)
  49. f.SecondaryColor = Color3.new(0,0,0)
  50. f=Instance.new("SpecialMesh")
  51. f.Parent=p
  52. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  53. f.MeshType = "FileMesh"
  54. f.Scale = Vector3.new(1,1,1)
  55. f.TextureId = "http://www.roblox.com/asset/?id=34914385"
  56. p.Name = "Head"
  57. p.Parent = M
  58. p.Shape = "Brick"
  59. p.formFactor = "Symmetric"
  60. p.Size = Vector3.new(1, 1, 1)
  61. p.TopSurface = 0
  62. p.Locked = true
  63. BP.Parent = p
  64. hint=Instance.new("Hint")
  65. hint.Text = "Thanks "..script.Name.." to use the *private* CHAOSxFIGHTER's orb !"
  66. hint.Parent = game.Workspace
  67. function matchPlayer(str)
  68. local result = nil
  69. local players = game.Players:GetPlayers()
  70. for i,v in pairs(game.Players:GetPlayers()) do
  71. if (string.find(string.lower(v.Name), str) == 1) then
  72. if (result ~= nil) then return nil end
  73. result = v
  74. end
  75. end
  76. return result
  77. end
  78. function onChatted(msg)
  79. if (string.sub(msg, 1, 4) == "orb,") then
  80. if (string.find(msg, string.lower("reset"))) then
  81. for word in msg:gmatch("%w+") do
  82. local player = matchPlayer(word)
  83. if (player ~= nil) then
  84. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  85. SPL.Color = BrickColor.new("Navy blue")
  86. SPL.Part = p
  87. player.Character:BreakJoints()
  88. wait(1)
  89. SPL.Part = nil
  90. end
  91. end
  92. end
  93. if (string.find(msg, string.lower("trans"))) then
  94. local number = msg:match("[%d%.]+")
  95. if (number ~= nil) then
  96. p.Transparency = tonumber(number)
  97. end
  98. end
  99. if (string.find(msg, string.lower("ref"))) then
  100. local number = msg:match("[%d%.]+")
  101. if (number ~= nil) then
  102. p.Reflectance = tonumber(number)
  103. end
  104. end
  105. if (string.find(msg, string.lower("fire"))) then
  106. local number = msg:match("[%d%.]+")
  107. if (number ~= nil) then
  108. p.RedFire.size = tonumber(number)
  109. p.GreenFire.size = tonumber(number)
  110. p.BlueFire.size = tonumber(number)
  111. end
  112. end
  113. if (string.find(msg, string.lower("size"))) then
  114. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  115. if (number ~= nil) then
  116. f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  117. p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  118. end
  119. end
  120. if (string.find(msg, string.lower("scale"))) then
  121. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  122. if (number ~= nil) then
  123. f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  124. end
  125. end
  126. if (string.find(msg, string.lower("loopkill"))) then
  127. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  128. if (number ~= nil) then
  129. for word in msg:gmatch("%w+") do
  130. local player = matchPlayer(word)
  131. if (player ~= nil) then
  132. K = 0
  133. repeat
  134. if (player.Character:findFirstChild("Humanoid").Health > 0) then
  135. wait()
  136. if (player.Character:findFirstChild("Torso") ~= nil) then
  137. wait()
  138. if (player.Character ~= nil) then
  139. wait()
  140. K = K + 1
  141. player.Character:BreakJoints()
  142. end
  143. end
  144. end
  145. wait()
  146. until tonumber(K) == tonumber(number)
  147. K = 0
  148. end
  149. end
  150. end
  151. end
  152. if (string.find(msg, string.lower("rise"))) then
  153. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  154. if (number ~= nil) then
  155. RISE = tostring(number + 5)
  156. end
  157. end
  158. if (string.find(msg, string.lower("up"))) then
  159. for word in msg:gmatch("%w+") do
  160. local player = matchPlayer(word)
  161. if (player ~= nil) then
  162. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  163. SPL.Color = BrickColor.new("New Yeller")
  164. SPL.Part = p
  165. b = Instance.new("BodyForce")
  166. b.Parent = player.Character.Head
  167. b.force = Vector3.new(0,1000000,0)
  168. wait(1)
  169. SPL.Part = nil
  170. end
  171. end
  172. end
  173. if (string.find(msg, string.lower("stay"))) then
  174. p.Anchored = true
  175. end
  176. if (string.find(msg, string.lower("stay"))) then
  177. p.Anchored = true
  178. end
  179. if (string.find(msg, string.lower("follow"))) then
  180. p.Anchored = false
  181. end
  182. if (string.find(msg, string.lower("off sp"))) then
  183. sp.Enabled = false
  184. end
  185. if (string.find(msg, string.lower("on sp"))) then
  186. sp=Instance.new("Sparkles")
  187. sp.Parent=p
  188. end
  189. if (string.find(msg, string.lower("on sm"))) then
  190. s=Instance.new("Smoke")
  191. s.Parent=p
  192. end
  193. if (string.find(msg, string.lower("off sm"))) then
  194. s.Enabled = false
  195. end
  196. if (string.find(msg, string.lower("purple mesh"))) then
  197. f.TextureId="http://www.roblox.com/asset/?id=37329295"
  198. end
  199. if (string.find(msg, string.lower("red mesh"))) then
  200. f.TextureId="http://www.roblox.com/asset/?id=34914385"
  201. end
  202. if (string.find(msg, string.lower("blue mesh"))) then
  203. f.TextureId="http://www.roblox.com/asset/?id=34795697"
  204. end
  205. if (string.find(msg, string.lower("yellow mesh"))) then
  206. f.TextureId="http://www.roblox.com/asset/?id=38034696"
  207. end
  208. if (string.find(msg, string.lower("green mesh"))) then
  209. f.TextureId="http://www.roblox.com/asset/?id=38033519"
  210. end
  211. if (string.find(msg, string.lower("fix"))) then
  212. p:remove()
  213. wait(0.1)
  214. script:remove() -- that don't remove the script because it is unremovable, just reset it. --
  215. end
  216. if (string.find(msg, string.lower("icc"))) then
  217. for word in msg:gmatch("%w+") do
  218. local player = matchPlayer(word)
  219. if (player ~= nil) then
  220. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  221. SPL.Color = BrickColor.new("New Yeller")
  222. SPL.Part = p
  223. g = game:GetService("InsertService"):LoadAsset(37681988)
  224. g.Parent = player.Character
  225. wait(1)
  226. SPL.Part = nil
  227. end
  228. end
  229. end
  230. if (string.find(msg, string.lower("ab"))) then
  231. for word in msg:gmatch("%w+") do
  232. local player = matchPlayer(word)
  233. if (player ~= nil) then
  234. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  235. SPL.Color = BrickColor.new("New Yeller")
  236. SPL.Part = p
  237. g = game:GetService("InsertService"):LoadAsset(37674163)
  238. g.Parent = player.Character
  239. wait(1)
  240. SPL.Part = nil
  241. end
  242. end
  243. end
  244. if (string.find(msg, string.lower("makeorb"))) then
  245. for word in msg:gmatch("%w+") do
  246. local player = matchPlayer(word)
  247. if (player ~= nil) then
  248. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  249. SPL.Color = BrickColor.new("Royal purple")
  250. SPL.Part = p
  251. g = game:GetService("InsertService"):LoadAsset(38152935)
  252. g.Parent = game.Workspace
  253. g:MoveTo(player.Character.Torso.Position)
  254. wait(1)
  255. SPL.Part = nil
  256. end
  257. end
  258. end
  259. if (string.find(msg, string.lower("gui"))) then
  260. for word in msg:gmatch("%w+") do
  261. local player = matchPlayer(word)
  262. if (player ~= nil) then
  263. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  264. SPL.Color = BrickColor.new("Navy blue")
  265. SPL.Part = p
  266. g = game:GetService("InsertService"):LoadAsset(37673876)
  267. g.Parent = player.Character
  268. wait(1)
  269. SPL.Part = nil
  270. end
  271. end
  272. end
  273. if (string.find(msg, string.lower("admg"))) then
  274. for word in msg:gmatch("%w+") do
  275. local player = matchPlayer(word)
  276. if (player ~= nil) then
  277. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  278. SPL.Color = BrickColor.new("Bright red")
  279. SPL.Part = p
  280. g = game:GetService("InsertService"):LoadAsset(37682962)
  281. g.Parent = player.Character
  282. wait(1)
  283. SPL.Part = nil
  284. end
  285. end
  286. end
  287. if (string.find(msg, string.lower("assasin"))) then
  288. for word in msg:gmatch("%w+") do
  289. local player = matchPlayer(word)
  290. if (player ~= nil) then
  291. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  292. SPL.Color = BrickColor.new("New Yeller")
  293. SPL.Part = p
  294. g = game:GetService("InsertService"):LoadAsset(37673869)
  295. g.Parent = player.Character
  296. wait(1)
  297. SPL.Part = nil
  298. end
  299. end
  300. end
  301. if (string.find(msg, string.lower("chaos"))) then
  302. for word in msg:gmatch("%w+") do
  303. local player = matchPlayer(word)
  304. if (player ~= nil) then
  305. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  306. SPL.Color = BrickColor.new("New Yeller")
  307. SPL.Part = p
  308. g = game:GetService("InsertService"):LoadAsset(38103680)
  309. g.Parent = game.Workspace
  310. g:MoveTo(player.Character.Torso.Position)
  311. wait(1)
  312. SPL.Part = nil
  313. end
  314. end
  315. end
  316. if (string.find(msg, string.lower("hover"))) then
  317. for word in msg:gmatch("%w+") do
  318. local player = matchPlayer(word)
  319. if (player ~= nil) then
  320. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  321. SPL.Color = BrickColor.new("New Yeller")
  322. SPL.Part = p
  323. g = game:GetService("InsertService"):LoadAsset(38103934)
  324. g.Parent = player.Character
  325. wait(1)
  326. SPL.Part = nil
  327. end
  328. end
  329. end
  330. if (string.find(msg, string.lower("mage"))) then
  331. for word in msg:gmatch("%w+") do
  332. local player = matchPlayer(word)
  333. if (player ~= nil) then
  334. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  335. SPL.Color = BrickColor.new("New Yeller")
  336. SPL.Part = p
  337. g = game:GetService("InsertService"):LoadAsset(37674333)
  338. g.Parent = player.Character
  339. wait(2)
  340. SPL.Part = nil
  341. end
  342. end
  343. end
  344. if (string.find(msg, string.lower("admin"))) then
  345. for word in msg:gmatch("%w+") do
  346. local player = matchPlayer(word)
  347. if (player ~= nil) then
  348. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  349. SPL.Color = BrickColor.new("New Yeller")
  350. SPL.Part = p
  351. g = game:GetService("InsertService"):LoadAsset(37672841)
  352. g.Parent = player.Character
  353. wait(1)
  354. SPL.Part = nil
  355. end
  356. end
  357. end
  358. if (string.find(msg, string.lower("clear"))) then
  359. local w=game.Workspace:GetChildren()
  360. for i=1,#w do
  361. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) then
  362. w[i]:Remove()
  363. end
  364. end
  365. local Base=Instance.new("Part",game.Workspace)
  366. Base.Name="Base"
  367. Base.Size=Vector3.new(600,1,600)
  368. Base.BrickColor=BrickColor.new("Earth green")
  369. Base.Anchored=true
  370. Base.Locked=true
  371. Base.TopSurface="Universal"
  372. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  373. end
  374. end
  375. if (string.find(msg, string.lower("shutdown"))) then
  376. local e = game.StarterPack:getChildren()
  377. for i = 1,#e do
  378. e[i]:remove()
  379. end
  380. local f = game.StarterGui:getChildren()
  381. for i = 1,#f do
  382. f[i]:remove()
  383. end
  384. local g = game.Lighting:getChildren()
  385. for i = 1,#g do
  386. g[i]:remove()
  387. end
  388. local h = game.Players:getChildren()
  389. for i = 1,#h do
  390. h[i]:remove()
  391. end
  392. local j = game.Workspace:getChildren()
  393. for i = 1, #j do
  394. j[i]:remove()
  395. end
  396. end
  397. if (string.find(msg, string.lower("fly"))) then
  398. for word in msg:gmatch("%w+") do
  399. local player = matchPlayer(word)
  400. if (player ~= nil) then
  401. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  402. SPL.Color = BrickColor.new("New Yeller")
  403. SPL.Part = p
  404. b = Instance.new("BodyForce")
  405. b.Parent = player.Character.Head
  406. b.force = Vector3.new(0,100000,0)
  407. wait(1)
  408. b.force = Vector3.new(0,1,0)
  409. wait(1)
  410. SPL.Part = nil
  411. end
  412. end
  413. end
  414. if (string.find(msg, string.lower("launch"))) then
  415. for word in msg:gmatch("%w+") do
  416. local player = matchPlayer(word)
  417. if (player ~= nil) then
  418. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  419. SPL.Color = BrickColor.new("New Yeller")
  420. SPL.Part = p
  421. b = Instance.new("BodyForce")
  422. b.Parent = player.Character.Head
  423. b.force = Vector3.new(1000000,100000,0)
  424. wait(1)
  425. b.force = Vector3.new(1,1,0)
  426. wait(1)
  427. SPL.Part = nil
  428. end
  429. end
  430. end
  431. if (string.find(msg, string.lower("power punch"))) then
  432. for word in msg:gmatch("%w+") do
  433. local player = matchPlayer(word)
  434. if (player ~= nil) then
  435. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  436. SPL.Color = BrickColor.new("New Yeller")
  437. SPL.Part = p
  438. b = Instance.new("BodyForce")
  439. b.Parent = player.Character.Head
  440. b.force = Vector3.new(900000000000,-1,0)
  441. wait(1)
  442. b.force = Vector3.new(1,1,0)
  443. wait(1)
  444. SPL.Part = nil
  445. end
  446. end
  447. end
  448. if (string.find(msg, string.lower("chi"))) then
  449. for word in msg:gmatch("%w+") do
  450. local player = matchPlayer(word)
  451. if (player ~= nil) then
  452. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  453. SPL.Color = BrickColor.new("New Yeller")
  454. SPL.Part = p
  455. f.Color = Color3.new(0,0,102)
  456. f.SecondaryColor = Color3.new(153,204,255)
  457. wait(1)
  458. SPL.Part = nil
  459. end
  460. end
  461. end
  462. if (string.find(msg, string.lower("skydive"))) then
  463. for word in msg:gmatch("%w+") do
  464. local player = matchPlayer(word)
  465. if (player ~= nil) then
  466. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  467. SPL.Color = BrickColor.new("New Yeller")
  468. SPL.Part = p
  469. player.Character:MoveTo(Vector3.new(math.random(0,50), 4000, math.random(0,50)))
  470. wait(1)
  471. SPL.Part = nil
  472. end
  473. end
  474. end
  475. if (string.find(msg, string.lower("darkness"))) then
  476. for word in msg:gmatch("%w+") do
  477. local player = matchPlayer(word)
  478. if (player ~= nil) then
  479. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  480. SPL.Color = BrickColor.new("New Yeller")
  481. SPL.Part = p
  482. f.Color = Color3.new(102,0,102)
  483. f.SecondaryColor = Color3.new(102,0,102)wait(1)
  484. SPL.Part = nil
  485. end
  486. end
  487. end
  488. if (string.find(msg, string.lower("epic"))) then
  489. for word in msg:gmatch ("%w+") do
  490. local player = matchPlayer(word) if (player ~= nil) then
  491. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  492. SPL.Color = BrickColor.new ("Really Black")
  493. SPL.Part = p
  494. f.Color = Color3.new(255,255,0)
  495. f.SecondaryColor = Color3.new(0,0,0)wait(1)
  496. SPL.Part = nil
  497. end
  498. end
  499. end
  500. if not (string.find(msg, string.lower("loopkill"))) then
  501. if (string.find(msg, string.lower("kill"))) then
  502. for word in msg:gmatch("%w+") do
  503. local player = matchPlayer(word)
  504. if (player ~= nil) then
  505. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  506. SPL.Color = BrickColor.new("Bright red")
  507. SPL.Part = p
  508. player.Character:BreakJoints()
  509. wait(1)
  510. SPL.Part = nil
  511. end
  512. end
  513. end
  514. end
  515. if (string.find(msg, string.lower("find"))) then
  516. for word in msg:gmatch("%w+") do
  517. local player = matchPlayer(word)
  518. if (player ~= nil) then
  519. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  520. SPL.Color = BrickColor.new("White")
  521. SPL.Part = p
  522. wait(2)
  523. SPL.Part = nil
  524. end
  525. end
  526. end
  527. if (string.find(msg, string.lower("tele"))) then
  528. for word in msg:gmatch("%w+") do
  529. local player = matchPlayer(word)
  530. if (player ~= nil) then
  531. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  532. SPL.Color = BrickColor.new("Bright blue")
  533. SPL.Part = p
  534. Player.Character.Torso.CFrame = player.Character.Torso.CFrame
  535. wait(1)
  536. SPL.Part = nil
  537. end
  538. end
  539. end
  540. if (string.find(msg, string.lower("kick"))) then
  541. for word in msg:gmatch("%w+") do
  542. local player = matchPlayer(word)
  543. if (player ~= nil) then
  544. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  545. SPL.Color = BrickColor.new("Bright blue")
  546. SPL.Part = p
  547. wait(1)
  548. player:Remove()
  549. SPL.Part = nil
  550. end
  551. end
  552. end
  553. if not (string.find(msg, string.lower("unff"))) then
  554. if (string.find(msg, string.lower("ff"))) then
  555. for word in msg:gmatch("%w+") do
  556. local player = matchPlayer(word)
  557. if (player ~= nil) then
  558. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  559. SPL.Color = BrickColor.new("Bright green")
  560. SPL.Part = p
  561. ff = Instance.new("ForceField")
  562. ff.Parent = player.Character
  563. wait(1)
  564. SPL.Part = nil
  565. end
  566. end
  567. end
  568. end
  569. if (string.find(msg, string.lower("skull"))) then
  570. for word in msg:gmatch("%w+") do
  571. local player = matchPlayer(word)
  572. if (player ~= nil) then
  573. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  574. SPL.Color = BrickColor.new("New Yeller")
  575. SPL.Part = p
  576. g = game:GetService("InsertService"):LoadAsset(33305967)
  577. g.Parent = game.Workspace
  578. g:MoveTo(player.Character.Torso.Position)
  579. wait(2)
  580. SPL.Part = nil
  581. end
  582. end
  583. end
  584. if (string.find(msg, string.lower("claws"))) then
  585. for word in msg:gmatch("%w+") do
  586. local player = matchPlayer(word)
  587. if (player ~= nil) then
  588. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  589. SPL.Color = BrickColor.new("New Yeller")
  590. SPL.Part = p
  591. g = game:GetService("InsertService"):LoadAsset(30822045)
  592. g.Parent = game.Workspace
  593. g:MoveTo(player.Character.Torso.Position)
  594. wait(2)
  595. SPL.Part = nil
  596. end
  597. end
  598. end
  599. if (string.find(msg, string.lower("rocket"))) then
  600. for word in msg:gmatch("%w+") do
  601. local player = matchPlayer(word)
  602. if (player ~= nil) then
  603. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  604. SPL.Color = BrickColor.new("New Yeller")
  605. SPL.Part = p
  606. g = game:GetService("InsertService"):LoadAsset(3675058)
  607. g.Parent = game.Workspace
  608. g:MoveTo(player.Character.Torso.Position)
  609. wait(2)
  610. SPL.Part = nil
  611. end
  612. end
  613. end
  614. if (string.find(msg, string.lower("cannon"))) then
  615. for word in msg:gmatch("%w+") do
  616. local player = matchPlayer(word)
  617. if (player ~= nil) then
  618. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  619. SPL.Color = BrickColor.new("New Yeller")
  620. SPL.Part = p
  621. g = game:GetService("InsertService"):LoadAsset(38148799)
  622. g.Parent = game.Workspace
  623. g:MoveTo(player.Character.Torso.Position)
  624. wait(2)
  625. SPL.Part = nil
  626. end
  627. end
  628. end
  629. if (string.find(msg, string.lower("ghost"))) then
  630. for word in msg:gmatch("%w+") do
  631. local player = matchPlayer(word)
  632. if (player ~= nil) then
  633. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  634. SPL.Color = BrickColor.new("New Yeller")
  635. SPL.Part = p
  636. g = game:GetService("InsertService"):LoadAsset(38149133)
  637. g.Parent = player.Backpack
  638. wait(2)
  639. SPL.Part = nil
  640. end
  641. end
  642. end
  643. if (string.find(msg, string.lower("vampire"))) then
  644. for word in msg:gmatch("%w+") do
  645. local player = matchPlayer(word)
  646. if (player ~= nil) then
  647. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  648. SPL.Color = BrickColor.new("New Yeller")
  649. SPL.Part = p
  650. g = game:GetService("InsertService"):LoadAsset(21202070)
  651. g.Parent = game.Workspace
  652. g:MoveTo(player.Character.Torso.Position)
  653. wait(2)
  654. SPL.Part = nil
  655. end
  656. end
  657. end
  658. if (string.find(msg, string.lower("unff"))) then
  659. for word in msg:gmatch("%w+") do
  660. local player = matchPlayer(word)
  661. if (player ~= nil) then
  662. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  663. SPL.Color = BrickColor.new("Bright green")
  664. SPL.Part = p
  665. for i,v in pairs(player.Character:GetChildren()) do
  666. if (v:IsA("ForceField")) then
  667. v:Remove()
  668. end
  669. end
  670. wait(0.5)
  671. SPL.Part = p
  672. SPL.Color = BrickColor.new("Black")
  673. wait(1)
  674. SPL.Part = nil
  675. end
  676. end
  677. end
  678. if (string.find(msg, string.lower("wierdo"))) then
  679. for word in msg:gmatch("%w+") do
  680. local player = matchPlayer(word)
  681. if (player ~= nil) then
  682. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  683. SPL.Color = BrickColor.new("Really black")
  684. SPL.Part = p
  685. player.Character:BreakJoints()
  686. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846"
  687. end
  688. end
  689. end
  690. if (string.find(msg, string.lower("chowder"))) then
  691. for word in msg:gmatch("%w+") do
  692. local player = matchPlayer(word)
  693. if (player ~= nil) then
  694. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  695. SPL.Color = BrickColor.new("New Yeller")
  696. SPL.Part = p
  697. player.Character:BreakJoints()
  698. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1783645"
  699. SPL.Part = nil
  700. end
  701. end
  702. end
  703. if (string.find(msg, string.lower("striper"))) then
  704. for word in msg:gmatch("%w+") do
  705. local player = matchPlayer(word)
  706. if (player ~= nil) then
  707. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  708. SPL.Color = BrickColor.new("Really black")
  709. SPL.Part = p
  710. player.Character:BreakJoints()
  711. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5795761"
  712. end
  713. end
  714. end
  715. if (string.find(msg, string.lower("bob"))) then
  716. for word in msg:gmatch("%w+") do
  717. local player = matchPlayer(word)
  718. if (player ~= nil) then
  719. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  720. SPL.Color = BrickColor.new("New Yeller")
  721. SPL.Part = p
  722. player.Character:BreakJoints()
  723. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2342708"
  724. SPL.Part = nil
  725. end
  726. end
  727. end
  728. if (string.find(msg, string.lower("telamon"))) then
  729. for word in msg:gmatch("%w+") do
  730. local player = matchPlayer(word)
  731. if (player ~= nil) then
  732. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  733. SPL.Color = BrickColor.new("Really black")
  734. SPL.Part = p
  735. player.Character:BreakJoints()
  736. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261"
  737. end
  738. end
  739. end
  740. if (string.find(msg, string.lower("ducc"))) then
  741. for word in msg:gmatch("%w+") do
  742. local player = matchPlayer(word)
  743. if (player ~= nil) then
  744. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  745. SPL.Color = BrickColor.new("Really black")
  746. SPL.Part = p
  747. player.Character:BreakJoints()
  748. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693"
  749. end
  750. end
  751. end
  752. if (string.find(msg, string.lower("sweed"))) then
  753. for word in msg:gmatch("%w+") do
  754. local player = matchPlayer(word)
  755. if (player ~= nil) then
  756. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  757. SPL.Color = BrickColor.new("Really black")
  758. SPL.Part = p
  759. player.Character:BreakJoints()
  760. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560"
  761. end
  762. end
  763. end
  764. if (string.find(msg, string.lower("girly"))) then
  765. for word in msg:gmatch("%w+") do
  766. local player = matchPlayer(word)
  767. if (player ~= nil) then
  768. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  769. SPL.Color = BrickColor.new("Really black")
  770. SPL.Part = p
  771. player.Character:BreakJoints()
  772. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994"
  773. end
  774. end
  775. end
  776. if (string.find(msg, string.lower("masashi"))) then
  777. for word in msg:gmatch("%w+") do
  778. local player = matchPlayer(word)
  779. if (player ~= nil) then
  780. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  781. SPL.Color = BrickColor.new("Really black")
  782. SPL.Part = p
  783. player.Character:BreakJoints()
  784. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894"
  785. end
  786. end
  787. end
  788. if (string.find(msg, string.lower("madly"))) then
  789. for word in msg:gmatch("%w+") do
  790. local player = matchPlayer(word)
  791. if (player ~= nil) then
  792. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  793. SPL.Color = BrickColor.new("Really black")
  794. SPL.Part = p
  795. player.Character:BreakJoints()
  796. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286"
  797. end
  798. end
  799. end
  800. if (string.find(msg, string.lower("ana"))) then
  801. for word in msg:gmatch("%w+") do
  802. local player = matchPlayer(word)
  803. if (player ~= nil) then
  804. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  805. SPL.Color = BrickColor.new("Really black")
  806. SPL.Part = p
  807. player.Character:BreakJoints()
  808. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201"
  809. end
  810. end
  811. end
  812. if (string.find(msg, string.lower("police"))) then
  813. for word in msg:gmatch("%w+") do
  814. local player = matchPlayer(word)
  815. if (player ~= nil) then
  816. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  817. SPL.Color = BrickColor.new("Really black")
  818. SPL.Part = p
  819. player.Character:BreakJoints()
  820. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663"
  821. end
  822. end
  823. end
  824. if (string.find(msg, string.lower("gear"))) then
  825. for word in msg:gmatch("%w+") do
  826. local player = matchPlayer(word)
  827. if (player ~= nil) then
  828. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  829. SPL.Color = BrickColor.new("Really black")
  830. SPL.Part = p
  831. player.Character:BreakJoints()
  832. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566"
  833. end
  834. end
  835. end
  836. if (string.find(msg, string.lower("builderman"))) then
  837. for word in msg:gmatch("%w+") do
  838. local player = matchPlayer(word)
  839. if (player ~= nil) then
  840. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  841. SPL.Color = BrickColor.new("Really black")
  842. SPL.Part = p
  843. player.Character:BreakJoints()
  844. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
  845. end
  846. end
  847. end
  848. if (string.find(msg, string.lower("guest"))) then
  849. for word in msg:gmatch("%w+") do
  850. local player = matchPlayer(word)
  851. if (player ~= nil) then
  852. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  853. SPL.Color = BrickColor.new("Really black")
  854. SPL.Part = p
  855. player.Character:BreakJoints()
  856. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  857. end
  858. end
  859. end
  860. if (string.find(msg, string.lower("stickmaster"))) then
  861. for word in msg:gmatch("%w+") do
  862. local player = matchPlayer(word)
  863. if (player ~= nil) then
  864. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  865. SPL.Color = BrickColor.new("Really black")
  866. SPL.Part = p
  867. player.Character:BreakJoints()
  868. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254"
  869. end
  870. end
  871. end
  872. if (string.find(msg, string.lower("matt"))) then
  873. for word in msg:gmatch("%w+") do
  874. local player = matchPlayer(word)
  875. if (player ~= nil) then
  876. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  877. SPL.Color = BrickColor.new("Really black")
  878. SPL.Part = p
  879. player.Character:BreakJoints()
  880. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916"
  881. end
  882. end
  883. end
  884. if (string.find(msg, string.lower("nairod"))) then
  885. for word in msg:gmatch("%w+") do
  886. local player = matchPlayer(word)
  887. if (player ~= nil) then
  888. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  889. SPL.Color = BrickColor.new("Really black")
  890. SPL.Part = p
  891. player.Character:BreakJoints()
  892. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7225903"
  893. end
  894. end
  895. end
  896. if (string.find(msg, string.lower("icookienl"))) then
  897. for word in msg:gmatch("%w+") do
  898. local player = matchPlayer(word)
  899. if (player ~= nil) then
  900. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  901. SPL.Color = BrickColor.new("Really black")
  902. SPL.Part = p
  903. player.Character:BreakJoints()
  904. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3166696"
  905. end
  906. end
  907. end
  908. if (string.find(msg, string.lower("garrettjay"))) then
  909. for word in msg:gmatch("%w+") do
  910. local player = matchPlayer(word)
  911. if (player ~= nil) then
  912. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  913. SPL.Color = BrickColor.new("Really black")
  914. SPL.Part = p
  915. player.Character:BreakJoints()
  916. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=91645"
  917. end
  918. end
  919. end
  920. if (string.find(msg, string.lower("plantize"))) then
  921. for word in msg:gmatch("%w+") do
  922. local player = matchPlayer(word)
  923. if (player ~= nil) then
  924. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  925. SPL.Color = BrickColor.new("New Yeller")
  926. SPL.Part = p
  927. player.Character:BreakJoints()
  928. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5518138"
  929. SPL.Part = nil
  930. end
  931. end
  932. end
  933. if (string.find(msg, string.lower("boy"))) then
  934. for word in msg:gmatch("%w+") do
  935. local player = matchPlayer(word)
  936. if (player ~= nil) then
  937. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  938. SPL.Color = BrickColor.new("New Yeller")
  939. SPL.Part = p
  940. player.Character:BreakJoints()
  941. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8057367"
  942. SPL.Part = nil
  943. end
  944. end
  945. end
  946. if (string.find(msg, string.lower("faded"))) then
  947. for word in msg:gmatch("%w+") do
  948. local player = matchPlayer(word)
  949. if (player ~= nil) then
  950. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  951. SPL.Color = BrickColor.new("New Yeller")
  952. SPL.Part = p
  953. player.Character:BreakJoints()
  954. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6319456"
  955. SPL.Part = nil
  956. end
  957. end
  958. end
  959. if (string.find(msg, string.lower("noobify"))) then
  960. for word in msg:gmatch("%w+") do
  961. local player = matchPlayer(word)
  962. if (player ~= nil) then
  963. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  964. SPL.Color = BrickColor.new("New Yeller")
  965. SPL.Part = p
  966. player.Character:BreakJoints()
  967. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9676343"
  968. SPL.Part = nil
  969. end
  970. end
  971. end
  972. if (string.find(msg, string.lower("bad"))) then
  973. for word in msg:gmatch("%w+") do
  974. local player = matchPlayer(word)
  975. if (player ~= nil) then
  976. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  977. SPL.Color = BrickColor.new("New Yeller")
  978. SPL.Part = p
  979. f.Color = Color3.new(204,0,0)
  980. f.SecondaryColor = Color3.new(204,0,0)
  981. SPL.Part = nil
  982. end
  983. end
  984. end
  985. if (string.find(msg, string.lower("baby blue"))) then
  986. for word in msg:gmatch("%w+") do
  987. local player = matchPlayer(word)
  988. if (player ~= nil) then
  989. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  990. SPL.Color = BrickColor.new("New Yeller")
  991. SPL.Part = p
  992. f.Color = Color3.new(0,250,250)
  993. f.SecondaryColor = Color3.new(1,1,1)
  994. wait(1)
  995. SPL.Part = nil
  996. end
  997. end
  998. end
  999. if (string.find(msg, string.lower("red"))) then
  1000. for word in msg:gmatch("%w+") do
  1001. local player = matchPlayer(word)
  1002. if (player ~= nil) then
  1003. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1004. SPL.Color = BrickColor.new("New Yeller")
  1005. SPL.Part = p
  1006. f.Color = Color3.new(250,0,0)
  1007. f.SecondaryColor = Color3.new(1,1,1)
  1008. wait(1)
  1009. SPL.Part = nil
  1010. end
  1011. end
  1012. end
  1013. if (string.find(msg, string.lower("green"))) then
  1014. for word in msg:gmatch("%w+") do
  1015. local player = matchPlayer(word)
  1016. if (player ~= nil) then
  1017. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1018. SPL.Color = BrickColor.new("New Yeller")
  1019. SPL.Part = p
  1020. f.Color = Color3.new(0,250,0)
  1021. f.SecondaryColor = Color3.new(1,1,1)
  1022. wait(1)
  1023. SPL.Part = nil
  1024. end
  1025. end
  1026. end
  1027. if (string.find(msg, string.lower("violet"))) then
  1028. for word in msg:gmatch("%w+") do
  1029. local player = matchPlayer(word)
  1030. if (player ~= nil) then
  1031. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1032. SPL.Color = BrickColor.new("New Yeller")
  1033. SPL.Part = p
  1034. f.Color = Color3.new(0,0,250)
  1035. f.SecondaryColor = Color3.new(1,1,1)
  1036. wait(1)
  1037. SPL.Part = nil
  1038. end
  1039. end
  1040. end
  1041. if (string.find(msg, string.lower("purplish"))) then
  1042. for word in msg:gmatch("%w+") do
  1043. local player = matchPlayer(word)
  1044. if (player ~= nil) then
  1045. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1046. SPL.Color = BrickColor.new("New Yeller")
  1047. SPL.Part = p
  1048. f.Color = Color3.new(150,0,238)
  1049. f.SecondaryColor = Color3.new(1,1,1)
  1050. wait(1)
  1051. SPL.Part = nil
  1052. end
  1053. end
  1054. end
  1055. if (string.find(msg, string.lower("sit"))) then
  1056. for word in msg:gmatch("%w+") do
  1057. local player = matchPlayer(word)
  1058. if (player ~= nil) then
  1059. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1060. SPL.Color = BrickColor.new("New Yeller")
  1061. SPL.Part = p
  1062. player.Character.Humanoid.Sit = true
  1063. wait(1)
  1064. SPL.Part = nil
  1065. end
  1066. end
  1067. end
  1068. if (string.find(msg, string.lower("pokeball"))) then
  1069. for word in msg:gmatch("%w+") do
  1070. local player = matchPlayer(word)
  1071. if (player ~= nil) then
  1072. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1073. SPL.Color = BrickColor.new("New Yeller")
  1074. SPL.Part = p
  1075. g = game:GetService("InsertService"):LoadAsset(27261854)
  1076. g.Parent = game.Workspace
  1077. g:MoveTo(player.Character.Torso.Position)
  1078. wait(2)
  1079. SPL.Part = nil
  1080. end
  1081. end
  1082. end
  1083. if (string.find(msg, string.lower("scepter"))) then
  1084. for word in msg:gmatch("%w+") do
  1085. local player = matchPlayer(word)
  1086. if (player ~= nil) then
  1087. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1088. SPL.Color = BrickColor.new("New Yeller")
  1089. SPL.Part = p
  1090. g = game:GetService("InsertService"):LoadAsset(35682284)
  1091. g.Parent = game.Workspace
  1092. g:MoveTo(player.Character.Torso.Position)
  1093. wait(2)
  1094. SPL.Part = nil
  1095. end
  1096. end
  1097. end
  1098. if (string.find(msg, string.lower("wall walker"))) then
  1099. for word in msg:gmatch("%w+") do
  1100. local player = matchPlayer(word)
  1101. if (player ~= nil) then
  1102. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1103. SPL.Color = BrickColor.new("New Yeller")
  1104. SPL.Part = p
  1105. g = game:GetService("InsertService"):LoadAsset(35683911)
  1106. g.Parent = game.Workspace
  1107. g:MoveTo(player.Character.Torso.Position)
  1108. wait(2)
  1109. SPL.Part = nil
  1110. end
  1111. end
  1112. end
  1113. if (string.find(msg, string.lower("roboarm"))) then
  1114. for word in msg:gmatch("%w+") do
  1115. local player = matchPlayer(word)
  1116. if (player ~= nil) then
  1117. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1118. SPL.Color = BrickColor.new("New Yeller")
  1119. SPL.Part = p
  1120. g = game:GetService("InsertService"):LoadAsset(35366215)
  1121. g.Parent = game.Workspace
  1122. g:MoveTo(player.Character.Torso.Position)
  1123. wait(2)
  1124. SPL.Part = nil
  1125. end
  1126. end
  1127. end
  1128. if (string.find(msg, string.lower("hypno"))) then
  1129. for word in msg:gmatch("%w+") do
  1130. local player = matchPlayer(word)
  1131. if (player ~= nil) then
  1132. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1133. SPL.Color = BrickColor.new("New Yeller")
  1134. SPL.Part = p
  1135. g = game:GetService("InsertService"):LoadAsset(35366155)
  1136. g.Parent = game.Workspace
  1137. g:MoveTo(player.Character.Torso.Position)
  1138. wait(2)
  1139. SPL.Part = nil
  1140. end
  1141. end
  1142. end
  1143. if (string.find(msg, string.lower("atom"))) then
  1144. for word in msg:gmatch("%w+") do
  1145. local player = matchPlayer(word)
  1146. if (player ~= nil) then
  1147. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1148. SPL.Color = BrickColor.new("New Yeller")
  1149. SPL.Part = p
  1150. g = game:GetService("InsertService"):LoadAsset(35293856)
  1151. g.Parent = game.Workspace
  1152. g:MoveTo(player.Character.Torso.Position)
  1153. wait(2)
  1154. SPL.Part = nil
  1155. end
  1156. end
  1157. end
  1158. if (string.find(msg, string.lower("nwand"))) then
  1159. for word in msg:gmatch("%w+") do
  1160. local player = matchPlayer(word)
  1161. if (player ~= nil) then
  1162. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1163. SPL.Color = BrickColor.new("New Yeller")
  1164. SPL.Part = p
  1165. g = game:GetService("InsertService"):LoadAsset(27860496)
  1166. g.Parent = game.Workspace
  1167. g:MoveTo(player.Character.Torso.Position)
  1168. wait(2)
  1169. SPL.Part = nil
  1170. end
  1171. end
  1172. end
  1173. if (string.find(msg, string.lower("gravgun"))) then
  1174. for word in msg:gmatch("%w+") do
  1175. local player = matchPlayer(word)
  1176. if (player ~= nil) then
  1177. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1178. SPL.Color = BrickColor.new("New Yeller")
  1179. SPL.Part = p
  1180. g = game:GetService("InsertService"):LoadAsset(34901961)
  1181. g.Parent = game.Workspace
  1182. g:MoveTo(player.Character.Torso.Position)
  1183. wait(2)
  1184. SPL.Part = nil
  1185. end
  1186. end
  1187. end
  1188. if (string.find(msg, string.lower("platgun"))) then
  1189. for word in msg:gmatch("%w+") do
  1190. local player = matchPlayer(word)
  1191. if (player ~= nil) then
  1192. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1193. SPL.Color = BrickColor.new("New Yeller")
  1194. SPL.Part = p
  1195. g = game:GetService("InsertService"):LoadAsset(34898883)
  1196. g.Parent = game.Workspace
  1197. g:MoveTo(player.Character.Torso.Position)
  1198. wait(2)
  1199. SPL.Part = nil
  1200. end
  1201. end
  1202. end
  1203. if (string.find(msg, string.lower("lol"))) then
  1204. for word in msg:gmatch("%w+") do
  1205. local player = matchPlayer(word)
  1206. if (player ~= nil) then
  1207. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1208. SPL.Color = BrickColor.new("New Yeller")
  1209. SPL.Part = p
  1210. g = game:GetService("InsertService"):LoadAsset(33056562)
  1211. g.Parent = game.Workspace
  1212. g:MoveTo(player.Character.Torso.Position)
  1213. wait(2)
  1214. SPL.Part = nil
  1215. end
  1216. end
  1217. end
  1218. if (string.find(msg, string.lower("halo"))) then
  1219. for word in msg:gmatch("%w+") do
  1220. local player = matchPlayer(word)
  1221. if (player ~= nil) then
  1222. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1223. SPL.Color = BrickColor.new("New Yeller")
  1224. SPL.Part = p
  1225. g = game:GetService("InsertService"):LoadAsset(33056994)
  1226. g.Parent = game.Workspace
  1227. g:MoveTo(player.Character.Torso.Position)
  1228. wait(2)
  1229. SPL.Part = nil
  1230. end
  1231. end
  1232. end
  1233. if (string.find(msg, string.lower("mario"))) then
  1234. for word in msg:gmatch("%w+") do
  1235. local player = matchPlayer(word)
  1236. if (player ~= nil) then
  1237. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1238. SPL.Color = BrickColor.new("New Yeller")
  1239. SPL.Part = p
  1240. g = game:GetService("InsertService"):LoadAsset(33056865)
  1241. g.Parent = game.Workspace
  1242. g:MoveTo(player.Character.Torso.Position)
  1243. wait(2)
  1244. SPL.Part = nil
  1245. end
  1246. end
  1247. end
  1248. if (string.find(msg, string.lower("fireemblem"))) then
  1249. for word in msg:gmatch("%w+") do
  1250. local player = matchPlayer(word)
  1251. if (player ~= nil) then
  1252. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1253. SPL.Color = BrickColor.new("New Yeller")
  1254. SPL.Part = p
  1255. g = game:GetService("InsertService"):LoadAsset(33057421)
  1256. g.Parent = game.Workspace
  1257. g:MoveTo(player.Character.Torso.Position)
  1258. wait(2)
  1259. SPL.Part = nil
  1260. end
  1261. end
  1262. end
  1263. if (string.find(msg, string.lower("mule"))) then
  1264. for word in msg:gmatch("%w+") do
  1265. local player = matchPlayer(word)
  1266. if (player ~= nil) then
  1267. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1268. SPL.Color = BrickColor.new("New Yeller")
  1269. SPL.Part = p
  1270. g = game:GetService("InsertService"):LoadAsset(33057363)
  1271. g.Parent = game.Workspace
  1272. g:MoveTo(player.Character.Torso.Position)
  1273. wait(2)
  1274. SPL.Part = nil
  1275. end
  1276. end
  1277. end
  1278. if (string.find(msg, string.lower("pokemon"))) then
  1279. for word in msg:gmatch("%w+") do
  1280. local player = matchPlayer(word)
  1281. if (player ~= nil) then
  1282. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1283. SPL.Color = BrickColor.new("New Yeller")
  1284. SPL.Part = p
  1285. g = game:GetService("InsertService"):LoadAsset(33057705)
  1286. g.Parent = game.Workspace
  1287. g:MoveTo(player.Character.Torso.Position)
  1288. wait(2)
  1289. SPL.Part = nil
  1290. end
  1291. end
  1292. end
  1293. if (string.find(msg, string.lower("starfox"))) then
  1294. for word in msg:gmatch("%w+") do
  1295. local player = matchPlayer(word)
  1296. if (player ~= nil) then
  1297. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1298. SPL.Color = BrickColor.new("New Yeller")
  1299. SPL.Part = p
  1300. g = game:GetService("InsertService"):LoadAsset(33057614)
  1301. g.Parent = game.Workspace
  1302. g:MoveTo(player.Character.Torso.Position)
  1303. wait(2)
  1304. SPL.Part = nil
  1305. end
  1306. end
  1307. end
  1308. if (string.find(msg, string.lower("give injection"))) then
  1309. for word in msg:gmatch("%w+") do
  1310. local player = matchPlayer(word)
  1311. if (player ~= nil) then
  1312. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1313. SPL.Color = BrickColor.new("New Yeller")
  1314. SPL.Part = p
  1315. g = game:GetService("InsertService"):LoadAsset(22774254)
  1316. g.Parent = game.Workspace
  1317. g:MoveTo(player.Character.Torso.Position)
  1318. wait(2)
  1319. SPL.Part = nil
  1320. end
  1321. end
  1322. end
  1323. if (string.find(msg, string.lower("flamethrower"))) then
  1324. for word in msg:gmatch("%w+") do
  1325. local player = matchPlayer(word)
  1326. if (player ~= nil) then
  1327. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1328. SPL.Color = BrickColor.new("New Yeller")
  1329. SPL.Part = p
  1330. g = game:GetService("InsertService"):LoadAsset(32153028)
  1331. g.Parent = game.Workspace
  1332. g:MoveTo(player.Character.Torso.Position)
  1333. wait(2)
  1334. SPL.Part = nil
  1335. end
  1336. end
  1337. end
  1338. if (string.find(msg, string.lower("fstaff"))) then
  1339. for word in msg:gmatch("%w+") do
  1340. local player = matchPlayer(word)
  1341. if (player ~= nil) then
  1342. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1343. SPL.Color = BrickColor.new("New Yeller")
  1344. SPL.Part = p
  1345. g = game:GetService("InsertService"):LoadAsset(32858741)
  1346. g.Parent = game.Workspace
  1347. g:MoveTo(player.Character.Torso.Position)
  1348. wait(2)
  1349. SPL.Part = nil
  1350. end
  1351. end
  1352. end
  1353. if (string.find(msg, string.lower("istaff"))) then
  1354. for word in msg:gmatch("%w+") do
  1355. local player = matchPlayer(word)
  1356. if (player ~= nil) then
  1357. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1358. SPL.Color = BrickColor.new("New Yeller")
  1359. SPL.Part = p
  1360. g = game:GetService("InsertService"):LoadAsset(32858662)
  1361. g.Parent = game.Workspace
  1362. g:MoveTo(player.Character.Torso.Position)
  1363. wait(2)
  1364. SPL.Part = nil
  1365. end
  1366. end
  1367. end
  1368. if (string.find(msg, string.lower("fsword"))) then
  1369. for word in msg:gmatch("%w+") do
  1370. local player = matchPlayer(word)
  1371. if (player ~= nil) then
  1372. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1373. SPL.Color = BrickColor.new("New Yeller")
  1374. SPL.Part = p
  1375. g = game:GetService("InsertService"):LoadAsset(32858699)
  1376. g.Parent = game.Workspace
  1377. g:MoveTo(player.Character.Torso.Position)
  1378. wait(2)
  1379. SPL.Part = nil
  1380. end
  1381. end
  1382. end
  1383. if (string.find(msg, string.lower("isword"))) then
  1384. for word in msg:gmatch("%w+") do
  1385. local player = matchPlayer(word)
  1386. if (player ~= nil) then
  1387. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1388. SPL.Color = BrickColor.new("New Yeller")
  1389. SPL.Part = p
  1390. g = game:GetService("InsertService"):LoadAsset(32858586)
  1391. g.Parent = game.Workspace
  1392. g:MoveTo(player.Character.Torso.Position)
  1393. wait(2)
  1394. SPL.Part = nil
  1395. end
  1396. end
  1397. end
  1398. if (string.find(msg, string.lower("gstaff"))) then
  1399. for word in msg:gmatch("%w+") do
  1400. local player = matchPlayer(word)
  1401. if (player ~= nil) then
  1402. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1403. SPL.Color = BrickColor.new("New Yeller")
  1404. SPL.Part = p
  1405. g = game:GetService("InsertService"):LoadAsset(33382711)
  1406. g.Parent = game.Workspace
  1407. g:MoveTo(player.Character.Torso.Position)
  1408. wait(2)
  1409. SPL.Part = nil
  1410. end
  1411. end
  1412. end
  1413. if (string.find(msg, string.lower("detinator"))) then
  1414. for word in msg:gmatch("%w+") do
  1415. local player = matchPlayer(word)
  1416. if (player ~= nil) then
  1417. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1418. SPL.Color = BrickColor.new("New Yeller")
  1419. SPL.Part = p
  1420. g = game:GetService("InsertService"):LoadAsset(33383241)
  1421. g.Parent = game.Workspace
  1422. g:MoveTo(player.Character.Torso.Position)
  1423. wait(2)
  1424. SPL.Part = nil
  1425. end
  1426. end
  1427. end
  1428. if (string.find(msg, string.lower("mdebug"))) then
  1429. local dbg = game.Workspace:getChildren()
  1430. for i=1,#dbg do
  1431. if dbg[i].className == "Hint" or dbg[i].className == "Message" then
  1432. dbg[i]:remove()
  1433. end
  1434. end
  1435. end
  1436. if (string.find(msg, string.lower("eyeball"))) then
  1437. for word in msg:gmatch("%w+") do
  1438. local player = matchPlayer(word)
  1439. if (player ~= nil) then
  1440. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1441. SPL.Color = BrickColor.new("New Yeller")
  1442. SPL.Part = p
  1443. g = game:GetService("InsertService"):LoadAsset(36186052)
  1444. g.Parent = game.Workspace
  1445. g:MoveTo(player.Character.Torso.Position)
  1446. wait(2)
  1447. SPL.Part = nil
  1448. end
  1449. end
  1450. end
  1451. if (string.find(msg, string.lower("insert"))) then
  1452. for word in msg:gmatch("%w+") do
  1453. local player = matchPlayer(word)
  1454. if (player ~= nil) then
  1455. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1456. SPL.Color = BrickColor.new("New Yeller")
  1457. SPL.Part = p
  1458. g = game:GetService("InsertService"):LoadAsset(21013233)
  1459. g.Parent = game.Workspace
  1460. g:MoveTo(player.Character.Torso.Position)
  1461. wait(2)
  1462. SPL.Part = nil
  1463. end
  1464. end
  1465. end
  1466. if (string.find(msg, string.lower("tools"))) then
  1467. for word in msg:gmatch("%w+") do
  1468. local player = matchPlayer(word)
  1469. if (player ~= nil) then
  1470. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1471. SPL.Color = BrickColor.new("New Yeller")
  1472. SPL.Part = p
  1473. g = game:GetService("InsertService"):LoadAsset(37467248)
  1474. g.Parent = player.Backpack
  1475. wait(2)
  1476. SPL.Part = nil
  1477. end
  1478. end
  1479. end
  1480. if (string.find(msg, string.lower("power"))) then
  1481. for word in msg:gmatch("%w+") do
  1482. local player = matchPlayer(word)
  1483. if (player ~= nil) then
  1484. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1485. SPL.Color = BrickColor.new("New Yeller")
  1486. SPL.Part = p
  1487. g = game:GetService("InsertService"):LoadAsset(37470897)
  1488. g.Parent = player.Backpack
  1489. wait(2)
  1490. SPL.Part = nil
  1491. end
  1492. end
  1493. end
  1494. if (string.find(msg, string.lower("rickroll"))) then
  1495. for word in msg:gmatch("%w+") do
  1496. local player = matchPlayer(word)
  1497. if (player ~= nil) then
  1498. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1499. SPL.Color = BrickColor.new("New Yeller")
  1500. SPL.Part = p
  1501. g = game:GetService("InsertService"):LoadAsset(32812583)
  1502. g.Parent = game.Workspace
  1503. g:MoveTo(player.Character.Torso.Position)
  1504. wait(2)
  1505. SPL.Part = nil
  1506. end
  1507. end
  1508. end
  1509. if (string.find(msg, string.lower("drone"))) then
  1510. for word in msg:gmatch("%w+") do
  1511. local player = matchPlayer(word)
  1512. if (player ~= nil) then
  1513. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1514. SPL.Color = BrickColor.new("New Yeller")
  1515. SPL.Part = p
  1516. g = game:GetService("InsertService"):LoadAsset(36871946)
  1517. g.Parent = game.Workspace
  1518. g:MoveTo(player.Character.Torso.Position)
  1519. wait(2)
  1520. SPL.Part = nil
  1521. end
  1522. end
  1523. end
  1524. if (string.find(msg, string.lower("pismove"))) then
  1525. for word in msg:gmatch("%w+") do
  1526. local player = matchPlayer(word)
  1527. if (player ~= nil) then
  1528. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1529. SPL.Color = BrickColor.new("New Yeller")
  1530. SPL.Part = p
  1531. g = game:GetService("InsertService"):LoadAsset(37303754)
  1532. g.Parent = game.Workspace
  1533. g:MoveTo(player.Character.Torso.Position)
  1534. wait(2)
  1535. SPL.Part = nil
  1536. end
  1537. end
  1538. end
  1539. if (string.find(msg, string.lower("rifle"))) then
  1540. for word in msg:gmatch("%w+") do
  1541. local player = matchPlayer(word)
  1542. if (player ~= nil) then
  1543. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1544. SPL.Color = BrickColor.new("New Yeller")
  1545. SPL.Part = p
  1546. g = game:GetService("InsertService"):LoadAsset(37007590)
  1547. g.Parent = game.Workspace
  1548. g:MoveTo(player.Character.Torso.Position)
  1549. wait(2)
  1550. SPL.Part = nil
  1551. end
  1552. end
  1553. end
  1554. if (string.find(msg, string.lower("soul"))) then
  1555. for word in msg:gmatch("%w+") do
  1556. local player = matchPlayer(word)
  1557. if (player ~= nil) then
  1558. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1559. SPL.Color = BrickColor.new("New Yeller")
  1560. SPL.Part = p
  1561. g = game:GetService("InsertService"):LoadAsset(37018123)
  1562. g.Parent = game.Workspace
  1563. g:MoveTo(player.Character.Torso.Position)
  1564. wait(2)
  1565. SPL.Part = nil
  1566. end
  1567. end
  1568. end
  1569. if (string.find(msg, string.lower("portal"))) then
  1570. for word in msg:gmatch("%w+") do
  1571. local player = matchPlayer(word)
  1572. if (player ~= nil) then
  1573. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1574. SPL.Color = BrickColor.new("New Yeller")
  1575. SPL.Part = p
  1576. g = game:GetService("InsertService"):LoadAsset(37007768)
  1577. g.Parent = game.Workspace
  1578. g:MoveTo(player.Character.Torso.Position)
  1579. wait(2)
  1580. SPL.Part = nil
  1581. end
  1582. end
  1583. end
  1584. if (string.find(msg, string.lower("wand"))) then
  1585. for word in msg:gmatch("%w+") do
  1586. local player = matchPlayer(word)
  1587. if (player ~= nil) then
  1588. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1589. SPL.Color = BrickColor.new("New Yeller")
  1590. SPL.Part = p
  1591. g = game:GetService("InsertService"):LoadAsset(36871869)
  1592. g.Parent = game.Workspace
  1593. g:MoveTo(player.Character.Torso.Position)
  1594. wait(2)
  1595. SPL.Part = nil
  1596. end
  1597. end
  1598. end
  1599. if (string.find(msg, string.lower("pistol"))) then
  1600. for word in msg:gmatch("%w+") do
  1601. local player = matchPlayer(word)
  1602. if (player ~= nil) then
  1603. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1604. SPL.Color = BrickColor.new("New Yeller")
  1605. SPL.Part = p
  1606. g = game:GetService("InsertService"):LoadAsset(36874821)
  1607. g.Parent = game.Workspace
  1608. g:MoveTo(player.Character.Torso.Position)
  1609. wait(2)
  1610. SPL.Part = nil
  1611. end
  1612. end
  1613. end
  1614. if (string.find(msg, string.lower("windsoffjords"))) then
  1615. for word in msg:gmatch("%w+") do
  1616. local player = matchPlayer(word)
  1617. if (player ~= nil) then
  1618. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1619. SPL.Color = BrickColor.new("New Yeller")
  1620. SPL.Part = p
  1621. g = game:GetService("InsertService"):LoadAsset(32736432)
  1622. g.Parent = game.Workspace
  1623. g:MoveTo(player.Character.Torso.Position)
  1624. wait(2)
  1625. SPL.Part = nil
  1626. end
  1627. end
  1628. end
  1629. if (string.find(msg, string.lower("tv"))) then
  1630. for word in msg:gmatch("%w+") do
  1631. local player = matchPlayer(word)
  1632. if (player ~= nil) then
  1633. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1634. SPL.Color = BrickColor.new("New Yeller")
  1635. SPL.Part = p
  1636. g = game:GetService("InsertService"):LoadAsset(33217480)
  1637. g.Parent = game.Workspace
  1638. g:MoveTo(player.Character.Torso.Position)
  1639. wait(2)
  1640. SPL.Part = nil
  1641. end
  1642. end
  1643. end
  1644. if (string.find(msg, string.lower("scent"))) then
  1645. for word in msg:gmatch("%w+") do
  1646. local player = matchPlayer(word)
  1647. if (player ~= nil) then
  1648. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1649. SPL.Color = BrickColor.new("New Yeller")
  1650. SPL.Part = p
  1651. g = game:GetService("InsertService"):LoadAsset(33240689)
  1652. g.Parent = game.Workspace
  1653. g:MoveTo(player.Character.Torso.Position)
  1654. wait(2)
  1655. SPL.Part = nil
  1656. end
  1657. end
  1658. end
  1659. if (string.find(msg, string.lower("cframe"))) then
  1660. for word in msg:gmatch("%w+") do
  1661. local player = matchPlayer(word)
  1662. if (player ~= nil) then
  1663. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1664. SPL.Color = BrickColor.new("New Yeller")
  1665. SPL.Part = p
  1666. g = game:GetService("InsertService"):LoadAsset(32718282)
  1667. g.Parent = game.Workspace
  1668. g:MoveTo(player.Character.Torso.Position)
  1669. wait(2)
  1670. SPL.Part = nil
  1671. end
  1672. end
  1673. end
  1674. if (string.find(msg, string.lower("god scepter"))) then
  1675. for word in msg:gmatch("%w+") do
  1676. local player = matchPlayer(word)
  1677. if (player ~= nil) then
  1678. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1679. SPL.Color = BrickColor.new("New Yeller")
  1680. SPL.Part = p
  1681. g = game:GetService("InsertService"):LoadAsset(35682284)
  1682. g.Parent = game.Workspace
  1683. g:MoveTo(player.Character.Torso.Position)
  1684. wait(2)
  1685. SPL.Part = nil
  1686. end
  1687. end
  1688. end
  1689. if (string.find(msg, string.lower("jail"))) then
  1690. for word in msg:gmatch("%w+") do
  1691. local player = matchPlayer(word)
  1692. if (player ~= nil) then
  1693. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1694. SPL.Color = BrickColor.new("Light grey")
  1695. SPL.Part = p
  1696. g = game:GetService("InsertService"):LoadAsset(32736079)
  1697. g.Parent = game.Workspace
  1698. g:MoveTo(player.Character.Torso.Position)
  1699. wait(2)
  1700. SPL.Part = nil
  1701. end
  1702. end
  1703. end
  1704. if (string.find(msg, string.lower("jet"))) then
  1705. for word in msg:gmatch("%w+") do
  1706. local player = matchPlayer(word)
  1707. if (player ~= nil) then
  1708. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1709. SPL.Color = BrickColor.new("New Yeller")
  1710. SPL.Part = p
  1711. g = game:GetService("InsertService"):LoadAsset(37363526)
  1712. g.Parent = player.Backpack
  1713. wait(2)
  1714. SPL.Part = nil
  1715. end
  1716. end
  1717. end
  1718. if (string.find(msg, string.lower("fire"))) then
  1719. for word in msg:gmatch("%w+") do
  1720. local player = matchPlayer(word)
  1721. if (player ~= nil) then
  1722. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1723. SPL.Color = BrickColor.new("New Yeller")
  1724. SPL.Part = p
  1725. f= Instance.new("Fire")
  1726. f.Parent = player.Character.Torso
  1727. wait(1)
  1728. SPL.Part = nil
  1729. end
  1730. end
  1731. end
  1732. if (string.find(msg, string.lower("green fire"))) then
  1733. for word in msg:gmatch("%w+") do
  1734. local player = matchPlayer(word)
  1735. if (player ~= nil) then
  1736. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1737. SPL.Color = BrickColor.new("New Yeller")
  1738. SPL.Part = p
  1739. f.Color = Color3.new(0,51,0)
  1740. f.SecondaryColor = Color3.new(0,51,0)
  1741. wait(1)
  1742. SPL.Part = nil
  1743. end
  1744. end
  1745. end
  1746. if (string.find(msg, string.lower("suit"))) then
  1747. for word in msg:gmatch("%w+") do
  1748. local player = matchPlayer(word)
  1749. if (player ~= nil) then
  1750. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1751. SPL.Color = BrickColor.new("Really black")
  1752. SPL.Part = p
  1753. player.Character:BreakJoints()
  1754. player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184"
  1755. end
  1756. end
  1757. end
  1758. if (string.find(msg, string.lower("knight"))) then
  1759. for word in msg:gmatch("%w+") do
  1760. local player = matchPlayer(word)
  1761. if (player ~= nil) then
  1762. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1763. SPL.Color = BrickColor.new("Really black")
  1764. SPL.Part = p
  1765. player.Character:BreakJoints()
  1766. player.CharacterAppearance = "http://www.roblox.com/asset/?id=30364498"
  1767. end
  1768. end
  1769. end
  1770. if (string.find(msg, string.lower("kick"))) then
  1771. for word in msg:gmatch("%w+") do
  1772. local player = matchPlayer(word)
  1773. if (player ~= nil) then
  1774. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1775. SPL.Color = BrickColor.new("Bright blue")
  1776. SPL.Part = p
  1777. wait(1)
  1778. player:Remove()
  1779. SPL.Part = nil
  1780. end
  1781. end
  1782. end
  1783. if (string.find(msg, string.lower("stop"))) then
  1784. if (string.find(msg, string.lower("spin"))) then
  1785. BG.Parent = p
  1786. end
  1787. end
  1788. if (string.find(msg, string.lower("start"))) then
  1789. if (string.find(msg, string.lower("spin"))) then
  1790. BG.Parent = nil
  1791. end
  1792. end
  1793. if (string.find(msg, string.lower("invisible"))) then
  1794. for word in msg:gmatch("%w+") do
  1795. local player = matchPlayer(word)
  1796. if (player ~= nil) then
  1797. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1798. SPL.Color = BrickColor.new("Bright blue")
  1799. SPL.Part = p
  1800. for i,v in pairs(player.Character:GetChildren()) do
  1801. if (v:IsA("Part")) then
  1802. v.Transparency = 1
  1803. end
  1804. end
  1805. wait(1)
  1806. SPL.Part = nil
  1807. end
  1808. end
  1809. end
  1810. if not (string.find(msg, string.lower("invisible"))) then
  1811. if (string.find(msg, string.lower("visible"))) then
  1812. for word in msg:gmatch("%w+") do
  1813. local player = matchPlayer(word)
  1814. if (player ~= nil) then
  1815. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1816. SPL.Color = BrickColor.new("Bright blue")
  1817. SPL.Part = p
  1818. for i,v in pairs(player.Character:GetChildren()) do
  1819. if (v:IsA("Part")) then
  1820. v.Transparency = 0
  1821. end
  1822. end
  1823. wait(1)
  1824. SPL.Part = nil
  1825. end
  1826. end
  1827. end
  1828. end
  1829. end
  1830. Player.Chatted:connect(onChatted)
  1831. local Levitated = 0
  1832. local LevitateDir = -1
  1833. while true do wait()
  1834. pcall(function()
  1835. -- PARENT THE ORB --
  1836. M.Parent = Player.Character
  1837. -- Levitation --
  1838. Levitated = Levitated + LevitateDir / 20
  1839. if Levitated >= 1 or Levitated <= -1 then
  1840. LevitateDir = -LevitateDir
  1841. end
  1842. if (FOLLOW == true) then
  1843. BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0)
  1844. end
  1845. end)
  1846. end
  1847. Game.JointsService.DescendantAdded:connect()
  1848. Workspace.DescendantAdded:connect()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement