Advertisement
KINGOFCOOL

Untitled

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