Advertisement
opticgamers6361

Untitled

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