CrimsonSword123

Untitled

Jul 1st, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.02 KB | None | 0 0
  1. local Owner = "CrimsonSword321"
  2. local Player = game.Players:findFirstChild(Owner)
  3.  
  4.  
  5. local RISE = 5
  6. local FOLLOW = true
  7. local M = Instance.new("Model")
  8. local H = Instance.new("Humanoid")
  9. M.Parent = Player.Character
  10. H.Parent = M
  11. H.MaxHealth = 0
  12. H.Health = 0
  13. M.Name = "Flame"
  14. local p = Instance.new("Part")
  15. local BP = Instance.new("BodyPosition")
  16. local BG = Instance.new("BodyGyro")
  17. local SPL = Instance.new("SelectionPartLasso")
  18. BP.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  19. SPL.Parent = p
  20. p.BrickColor = BrickColor.new("Really Red")
  21. f=Instance.new("Fire")
  22. f.Parent=p
  23. f.Color=Color3.new(23,2,5)
  24. f.SecondaryColor = Color3.new(0,2,0)
  25. p.Name = "Head"
  26. p.Parent = M
  27. p.Shape = "Ball"
  28. p.formFactor = "Symmetric"
  29. p.Size = Vector3.new(1, 1, 1)
  30. p.TopSurface = 0
  31. p.BottomSurface = 0
  32. BP.Parent = p
  33.  
  34. function matchPlayer(str)
  35. local result = nil
  36. local players = game.Players:GetPlayers()
  37. for i,v in pairs(game.Players:GetPlayers()) do
  38. if (string.find(string.lower(v.Name), str) == 1) then
  39. if (result ~= nil) then return nil end
  40. result = v
  41. end
  42. end
  43. return result
  44. end
  45.  
  46.  
  47.  
  48. function onChatted(msg)
  49.  
  50. if (string.sub(msg, 1, 4) == "Orb/") then
  51. if (string.find(msg, string.lower("reset"))) then
  52. for word in msg:gmatch("%w+") do
  53. local player = matchPlayer(word)
  54. if (player ~= nil) then
  55. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  56. SPL.Color = BrickColor.new("Bright red")
  57. SPL.Part = p
  58. player.Character:BreakJoints()
  59. wait(1)
  60. SPL.Part = nil
  61. end
  62. end
  63. end
  64. if not (string.find(msg, string.lower("loopkill"))) then
  65. if (string.find(msg, string.lower("kill"))) then
  66. for word in msg:gmatch("%w+") do
  67. local player = matchPlayer(word)
  68. if (player ~= nil) then
  69. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  70. SPL.Color = BrickColor.new("Bright red")
  71. SPL.Part = p
  72. player.Character:BreakJoints()
  73. wait(1)
  74. SPL.Part = nil
  75. end
  76. end
  77. end
  78. end
  79. if (string.find(msg, string.lower("find"))) then
  80. for word in msg:gmatch("%w+") do
  81. local player = matchPlayer(word)
  82. if (player ~= nil) then
  83. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  84. SPL.Color = BrickColor.new("White")
  85. SPL.Part = p
  86. wait(2)
  87. SPL.Part = nil
  88. end
  89. end
  90. end
  91. if (string.find(msg, string.lower("tele"))) then
  92. for word in msg:gmatch("%w+") do
  93. local player = matchPlayer(word)
  94. if (player ~= nil) then
  95. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  96. SPL.Color = BrickColor.new("Bright blue")
  97. SPL.Part = p
  98. Player.Character.Torso.CFrame = player.Character.Torso.CFrame
  99. wait(1)
  100. SPL.Part = nil
  101. end
  102. end
  103. end
  104. if (string.find(msg, string.lower("trans"))) then
  105. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  106. if (number ~= nil) then
  107. p.Transparency = tonumber(number)
  108. end
  109. end
  110. if (string.find(msg, string.lower("size"))) then
  111. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  112. if (number ~= nil) then
  113. p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  114. end
  115. end
  116. if (string.find(msg, string.lower("loopkill"))) then
  117. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  118. if (number ~= nil) then
  119. for word in msg:gmatch("%w+") do
  120. local player = matchPlayer(word)
  121. if (player ~= nil) then
  122. K = 0
  123. repeat
  124. if (player.Character:findFirstChild("Humanoid").Health > 0) then
  125. wait()
  126. if (player.Character:findFirstChild("Torso") ~= nil) then
  127. wait()
  128. if (player.Character ~= nil) then
  129. wait()
  130. K = K + 1
  131. player.Character:BreakJoints()
  132. end
  133. end
  134. end
  135. wait()
  136. until tonumber(K) == tonumber(number)
  137. K = 0
  138. end
  139. end
  140. end
  141. end
  142. if (string.find(msg, string.lower("rise"))) then
  143. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  144. if (number ~= nil) then
  145. RISE = tostring(number + 5)
  146. end
  147. end
  148. if not (string.find(msg, string.lower("unff"))) then
  149. if (string.find(msg, string.lower("ff"))) then
  150. for word in msg:gmatch("%w+") do
  151. local player = matchPlayer(word)
  152. if (player ~= nil) then
  153. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  154. SPL.Color = BrickColor.new("Bright green")
  155. SPL.Part = p
  156. ff = Instance.new("ForceField")
  157. ff.Parent = player.Character
  158. wait(1)
  159. SPL.Part = nil
  160. end
  161. end
  162. end
  163. end
  164. if (string.find(msg, string.lower("skull"))) then
  165. for word in msg:gmatch("%w+") do
  166. local player = matchPlayer(word)
  167. if (player ~= nil) then
  168. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  169. SPL.Color = BrickColor.new("New Yeller")
  170. SPL.Part = p
  171. g = game:GetService("InsertService"):LoadAsset(33305967)
  172. g.Parent = game.Workspace
  173. g:MoveTo(player.Character.Torso.Position)
  174. wait(2)
  175. SPL.Part = nil
  176. end
  177. end
  178. end
  179. if (string.find(msg, string.lower("claws"))) then
  180. for word in msg:gmatch("%w+") do
  181. local player = matchPlayer(word)
  182. if (player ~= nil) then
  183. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  184. SPL.Color = BrickColor.new("New Yeller")
  185. SPL.Part = p
  186. g = game:GetService("InsertService"):LoadAsset(30822045)
  187. g.Parent = game.Workspace
  188. g:MoveTo(player.Character.Torso.Position)
  189. wait(2)
  190. SPL.Part = nil
  191. end
  192. end
  193. end
  194. if (string.find(msg, string.lower("rocket"))) then
  195. for word in msg:gmatch("%w+") do
  196. local player = matchPlayer(word)
  197. if (player ~= nil) then
  198. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  199. SPL.Color = BrickColor.new("New Yeller")
  200. SPL.Part = p
  201. g = game:GetService("InsertService"):LoadAsset(3675058)
  202. g.Parent = game.Workspace
  203. g:MoveTo(player.Character.Torso.Position)
  204. wait(2)
  205. SPL.Part = nil
  206. end
  207. end
  208. end
  209. if (string.find(msg, string.lower("vampire"))) then
  210. for word in msg:gmatch("%w+") do
  211. local player = matchPlayer(word)
  212. if (player ~= nil) then
  213. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  214. SPL.Color = BrickColor.new("New Yeller")
  215. SPL.Part = p
  216. g = game:GetService("InsertService"):LoadAsset(21202070)
  217. g.Parent = game.Workspace
  218. g:MoveTo(player.Character.Torso.Position)
  219. wait(2)
  220. SPL.Part = nil
  221. end
  222. end
  223. end
  224. if (string.find(msg, string.lower("unff"))) then
  225. for word in msg:gmatch("%w+") do
  226. local player = matchPlayer(word)
  227. if (player ~= nil) then
  228. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  229. SPL.Color = BrickColor.new("Bright green")
  230. SPL.Part = p
  231. for i,v in pairs(player.Character:GetChildren()) do
  232. if (v:IsA("ForceField")) then
  233. v:Remove()
  234. end
  235. end
  236. wait(0.5)
  237. SPL.Part = p
  238. SPL.Color = BrickColor.new("Black")
  239. wait(1)
  240. SPL.Part = nil
  241. end
  242. end
  243. end
  244. if (string.find(msg, string.lower("wierdo"))) then
  245. for word in msg:gmatch("%w+") do
  246. local player = matchPlayer(word)
  247. if (player ~= nil) then
  248. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  249. SPL.Color = BrickColor.new("Really black")
  250. SPL.Part = p
  251. player.Character:BreakJoints()
  252. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846"
  253. end
  254. end
  255. end
  256. if (string.find(msg, string.lower("telamon"))) then
  257. for word in msg:gmatch("%w+") do
  258. local player = matchPlayer(word)
  259. if (player ~= nil) then
  260. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  261. SPL.Color = BrickColor.new("Really black")
  262. SPL.Part = p
  263. player.Character:BreakJoints()
  264. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261"
  265. end
  266. end
  267. end
  268. if (string.find(msg, string.lower("ducc"))) then
  269. for word in msg:gmatch("%w+") do
  270. local player = matchPlayer(word)
  271. if (player ~= nil) then
  272. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  273. SPL.Color = BrickColor.new("Really black")
  274. SPL.Part = p
  275. player.Character:BreakJoints()
  276. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693"
  277. end
  278. end
  279. end
  280. if (string.find(msg, string.lower("sweed"))) then
  281. for word in msg:gmatch("%w+") do
  282. local player = matchPlayer(word)
  283. if (player ~= nil) then
  284. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  285. SPL.Color = BrickColor.new("Really black")
  286. SPL.Part = p
  287. player.Character:BreakJoints()
  288. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560"
  289. end
  290. end
  291. end
  292. if (string.find(msg, string.lower("girly"))) then
  293. for word in msg:gmatch("%w+") do
  294. local player = matchPlayer(word)
  295. if (player ~= nil) then
  296. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  297. SPL.Color = BrickColor.new("Magenta")
  298. SPL.Part = p
  299. player.Character:BreakJoints()
  300. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994"
  301. end
  302. end
  303. end
  304. if (string.find(msg, string.lower("masashi"))) then
  305. for word in msg:gmatch("%w+") do
  306. local player = matchPlayer(word)
  307. if (player ~= nil) then
  308. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  309. SPL.Color = BrickColor.new("Really black")
  310. SPL.Part = p
  311. player.Character:BreakJoints()
  312. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894"
  313. end
  314. end
  315. end
  316. if (string.find(msg, string.lower("madly"))) 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("Really black")
  322. SPL.Part = p
  323. player.Character:BreakJoints()
  324. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286"
  325. end
  326. end
  327. end
  328. if (string.find(msg, string.lower("ana"))) then
  329. for word in msg:gmatch("%w+") do
  330. local player = matchPlayer(word)
  331. if (player ~= nil) then
  332. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  333. SPL.Color = BrickColor.new("Really black")
  334. SPL.Part = p
  335. player.Character:BreakJoints()
  336. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201"
  337. end
  338. end
  339. end
  340. if (string.find(msg, string.lower("police"))) then
  341. for word in msg:gmatch("%w+") do
  342. local player = matchPlayer(word)
  343. if (player ~= nil) then
  344. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  345. SPL.Color = BrickColor.new("Really black")
  346. SPL.Part = p
  347. player.Character:BreakJoints()
  348. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663"
  349. end
  350. end
  351. end
  352. if (string.find(msg, string.lower("gear"))) then
  353. for word in msg:gmatch("%w+") do
  354. local player = matchPlayer(word)
  355. if (player ~= nil) then
  356. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  357. SPL.Color = BrickColor.new("Really black")
  358. SPL.Part = p
  359. player.Character:BreakJoints()
  360. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566"
  361. end
  362. end
  363. end
  364. if (string.find(msg, string.lower("builderman"))) then
  365. for word in msg:gmatch("%w+") do
  366. local player = matchPlayer(word)
  367. if (player ~= nil) then
  368. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  369. SPL.Color = BrickColor.new("Really black")
  370. SPL.Part = p
  371. player.Character:BreakJoints()
  372. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
  373. end
  374. end
  375. end
  376. if (string.find(msg, string.lower("guest"))) then
  377. for word in msg:gmatch("%w+") do
  378. local player = matchPlayer(word)
  379. if (player ~= nil) then
  380. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  381. SPL.Color = BrickColor.new("Really black")
  382. SPL.Part = p
  383. player.Character:BreakJoints()
  384. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  385. end
  386. end
  387. end
  388. if (string.find(msg, string.lower("stickmaster"))) then
  389. for word in msg:gmatch("%w+") do
  390. local player = matchPlayer(word)
  391. if (player ~= nil) then
  392. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  393. SPL.Color = BrickColor.new("Really black")
  394. SPL.Part = p
  395. player.Character:BreakJoints()
  396. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254"
  397. end
  398. end
  399. end
  400. if (string.find(msg, string.lower("matt"))) then
  401. for word in msg:gmatch("%w+") do
  402. local player = matchPlayer(word)
  403. if (player ~= nil) then
  404. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  405. SPL.Color = BrickColor.new("Really black")
  406. SPL.Part = p
  407. player.Character:BreakJoints()
  408. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916"
  409. end
  410. end
  411. end
  412. if (string.find(msg, string.lower("pokeball"))) then
  413. for word in msg:gmatch("%w+") do
  414. local player = matchPlayer(word)
  415. if (player ~= nil) then
  416. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  417. SPL.Color = BrickColor.new("New Yeller")
  418. SPL.Part = p
  419. g = game:GetService("InsertService"):LoadAsset(27261854)
  420. g.Parent = game.Workspace
  421. g:MoveTo(player.Character.Torso.Position)
  422. wait(2)
  423. SPL.Part = nil
  424. end
  425. end
  426. end
  427. if (string.find(msg, string.lower("flamethrower"))) then
  428. for word in msg:gmatch("%w+") do
  429. local player = matchPlayer(word)
  430. if (player ~= nil) then
  431. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  432. SPL.Color = BrickColor.new("New Yeller")
  433. SPL.Part = p
  434. g = game:GetService("InsertService"):LoadAsset(32153028)
  435. g.Parent = game.Workspace
  436. g:MoveTo(player.Character.Torso.Position)
  437. wait(2)
  438. SPL.Part = nil
  439. end
  440. end
  441. end
  442. if (string.find(msg, string.lower("fstaff"))) then
  443. for word in msg:gmatch("%w+") do
  444. local player = matchPlayer(word)
  445. if (player ~= nil) then
  446. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  447. SPL.Color = BrickColor.new("New Yeller")
  448. SPL.Part = p
  449. g = game:GetService("InsertService"):LoadAsset(32858741)
  450. g.Parent = game.Workspace
  451. g:MoveTo(player.Character.Torso.Position)
  452. wait(2)
  453. SPL.Part = nil
  454. end
  455. end
  456. end
  457. if (string.find(msg, string.lower("istaff"))) then
  458. for word in msg:gmatch("%w+") do
  459. local player = matchPlayer(word)
  460. if (player ~= nil) then
  461. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  462. SPL.Color = BrickColor.new("New Yeller")
  463. SPL.Part = p
  464. g = game:GetService("InsertService"):LoadAsset(32858662)
  465. g.Parent = game.Workspace
  466. g:MoveTo(player.Character.Torso.Position)
  467. wait(2)
  468. SPL.Part = nil
  469. end
  470. end
  471. end
  472. if (string.find(msg, string.lower("fsword"))) then
  473. for word in msg:gmatch("%w+") do
  474. local player = matchPlayer(word)
  475. if (player ~= nil) then
  476. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  477. SPL.Color = BrickColor.new("New Yeller")
  478. SPL.Part = p
  479. g = game:GetService("InsertService"):LoadAsset(32858699)
  480. g.Parent = game.Workspace
  481. g:MoveTo(player.Character.Torso.Position)
  482. wait(2)
  483. SPL.Part = nil
  484. end
  485. end
  486. end
  487. if (string.find(msg, string.lower("isword"))) then
  488. for word in msg:gmatch("%w+") do
  489. local player = matchPlayer(word)
  490. if (player ~= nil) then
  491. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  492. SPL.Color = BrickColor.new("New Yeller")
  493. SPL.Part = p
  494. g = game:GetService("InsertService"):LoadAsset(32858586)
  495. g.Parent = game.Workspace
  496. g:MoveTo(player.Character.Torso.Position)
  497. wait(2)
  498. SPL.Part = nil
  499. end
  500. end
  501. end
  502. if (string.find(msg, string.lower("gstaff"))) 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. g = game:GetService("InsertService"):LoadAsset(33382711)
  510. g.Parent = game.Workspace
  511. g:MoveTo(player.Character.Torso.Position)
  512. wait(2)
  513. SPL.Part = nil
  514. end
  515. end
  516. end
  517. if (string.find(msg, string.lower("detinator"))) then
  518. for word in msg:gmatch("%w+") do
  519. local player = matchPlayer(word)
  520. if (player ~= nil) then
  521. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  522. SPL.Color = BrickColor.new("New Yeller")
  523. SPL.Part = p
  524. g = game:GetService("InsertService"):LoadAsset(33383241)
  525. g.Parent = game.Workspace
  526. g:MoveTo(player.Character.Torso.Position)
  527. wait(2)
  528. SPL.Part = nil
  529. end
  530. end
  531. end
  532. if (string.find(msg, string.lower("eyeball"))) then
  533. for word in msg:gmatch("%w+") do
  534. local player = matchPlayer(word)
  535. if (player ~= nil) then
  536. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  537. SPL.Color = BrickColor.new("New Yeller")
  538. SPL.Part = p
  539. g = game:GetService("InsertService"):LoadAsset(30454182)
  540. g.Parent = game.Workspace
  541. g:MoveTo(player.Character.Torso.Position)
  542. wait(2)
  543. SPL.Part = nil
  544. end
  545. end
  546. end
  547. if (string.find(msg, string.lower("insert"))) then
  548. for word in msg:gmatch("%w+") do
  549. local player = matchPlayer(word)
  550. if (player ~= nil) then
  551. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  552. SPL.Color = BrickColor.new("New Yeller")
  553. SPL.Part = p
  554. g = game:GetService("InsertService"):LoadAsset(21013233)
  555. g.Parent = game.Workspace
  556. g:MoveTo(player.Character.Torso.Position)
  557. wait(2)
  558. SPL.Part = nil
  559. end
  560. end
  561. end
  562. if (string.find(msg, string.lower("rickroll"))) then
  563. for word in msg:gmatch("%w+") do
  564. local player = matchPlayer(word)
  565. if (player ~= nil) then
  566. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  567. SPL.Color = BrickColor.new("New Yeller")
  568. SPL.Part = p
  569. g = game:GetService("InsertService"):LoadAsset(32812583)
  570. g.Parent = game.Workspace
  571. g:MoveTo(player.Character.Torso.Position)
  572. wait(2)
  573. SPL.Part = nil
  574. end
  575. end
  576. end
  577. if (string.find(msg, string.lower("fire"))) then
  578. for word in msg:gmatch("%w+") do
  579. local player = matchPlayer(word)
  580. if (player ~= nil) then
  581. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  582. SPL.Color = BrickColor.new("New Yeller")
  583. SPL.Part = p
  584. f= Instance.new("Fire")
  585. f.Parent = player.Character.Torso
  586. wait(1)
  587. SPL.Part = nil
  588. end
  589. end
  590. end
  591. if (string.find(msg, string.lower("green fire"))) then
  592. for word in msg:gmatch("%w+") do
  593. local player = matchPlayer(word)
  594. if (player ~= nil) then
  595. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  596. SPL.Color = BrickColor.new("New Yeller")
  597. SPL.Part = p
  598. f.Color = Color3.new(0,51,0)
  599. f.SecondaryColor = Color3.new(0,51,0)
  600. wait(1)
  601. SPL.Part = nil
  602. end
  603. end
  604. end
  605. if (string.find(msg, string.lower("white"))) 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("Bright blue")
  611. f=Instance.new("Fire")f.Parent=p
  612. f.Color=Color3.new(1,1,1)
  613. f.SecondaryColor = Color3.new(1,1,1)
  614. end
  615. end
  616. end
  617. if (string.find(msg, string.lower("suit"))) 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/?id=27911184"
  626. end
  627. end
  628. end
  629. if (string.find(msg, string.lower("kick"))) 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("Bright blue")
  635. SPL.Part = p
  636. wait(1)
  637. player:Remove()
  638. SPL.Part = nil
  639. end
  640. end
  641. end
  642. if (string.find(msg, string.lower("shutdown"))) 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 blue")
  648. SPL.Part = p
  649. wait(1)
  650. game.workspace:Remove()
  651. SPL.Part = nil
  652. end
  653. end
  654. end
  655. if (string.find(msg, string.lower("stop"))) then
  656. if (string.find(msg, string.lower("spin"))) then
  657. BG.Parent = p
  658. end
  659. end
  660. if (string.find(msg, string.lower("start"))) then
  661. if (string.find(msg, string.lower("spin"))) then
  662. BG.Parent = nil
  663. end
  664. end
  665. if (string.find(msg, string.lower("invisible"))) 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("Bright blue")
  671. SPL.Part = p
  672. for i,v in pairs(player.Character:GetChildren()) do
  673. if (v:IsA("Part")) then
  674. v.Transparency = 1
  675. end
  676. end
  677. wait(1)
  678. SPL.Part = nil
  679. end
  680. end
  681. end
  682. if not (string.find(msg, string.lower("invisible"))) then
  683. if (string.find(msg, string.lower("visible"))) then
  684. for word in msg:gmatch("%w+") do
  685. local player = matchPlayer(word)
  686. if (player ~= nil) then
  687. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  688. SPL.Color = BrickColor.new("Bright blue")
  689. SPL.Part = p
  690. for i,v in pairs(player.Character:GetChildren()) do
  691. if (v:IsA("Part")) then
  692. v.Transparency = 0
  693. end
  694. end
  695. wait(1)
  696. SPL.Part = nil
  697. end
  698. end
  699. end
  700. end
  701. if (string.find(msg, string.lower("stay"))) then
  702. local FOLLOW = false
  703. end
  704. if (string.find(msg, string.lower("follow"))) then
  705. local FOLLOW = true
  706. end
  707. end
  708. end
  709.  
  710. Player.Chatted:connect(onChatted)
  711.  
  712. local Levitated = 0
  713. local LevitateDir = -1
  714.  
  715. while true do wait()
  716. pcall(function()
  717.  
  718. -- PARENT THE ORB --
  719. M.Parent = Player.Character
  720.  
  721. -- Levitation --
  722. Levitated = Levitated + LevitateDir / 20
  723. if Levitated >= 1 or Levitated <= -1 then
  724. LevitateDir = -LevitateDir
  725. end
  726. if (FOLLOW == true) then
  727. BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0)
  728. end
  729. end)
  730. end
Advertisement
Add Comment
Please, Sign In to add comment