Advertisement
popster12345

Untitled

Feb 20th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 67.94 KB | None | 0 0
  1. ----->>>>>----->>>>>----->>>>>--[[ °*_*° : Nairod's Orb V10 *Script Edition* : °*_*° ]]--<<<<<-----<<<<<-----<<<<<-----
  2. ----->>>>> Remplace ENTER YOUR NAME HERE at line 37 by your name ! <<<<<-----
  3.  
  4.  
  5. --<------------------------------------------------------------------------>--
  6.  
  7.  
  8. -- ... Unremovable Function ... --
  9.  
  10.  
  11. --<------------------------------------------------------------------------>--
  12.  
  13.  
  14.  
  15. local Settings={["Un_Removable"]= "On"}
  16. local function mFloor(x) return x - x % 1 end
  17. local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on"
  18. if Un_Removable then
  19. Game.Workspace.DescendantRemoving:connect(function(Child)
  20. if not Remove_At_Will and Child == script then
  21. script:Clone().Parent = Game.Workspace
  22. end
  23. end)
  24. end
  25.  
  26.  
  27.  
  28. --<------------------------------------------------------------------------>--
  29.  
  30.  
  31. -- ... Owner Of Orb ("Public Version") ... --
  32.  
  33.  
  34. --<------------------------------------------------------------------------>--
  35.  
  36.  
  37. Owners = "personsadminlol" ----->>>>> Remplace ENTER YOUR NAME HERE by your name / Don't remove " or the script won't work <<<<<-----
  38. Player = game.Players:findFirstChild(Owners)
  39.  
  40.  
  41. --<------------------------------------------------------------------------>--
  42.  
  43.  
  44. -- ... Part Of Orb ... --
  45.  
  46.  
  47. --<------------------------------------------------------------------------>--
  48.  
  49.  
  50. if Player.Character:findFirstChild(Owners.."'s Orb V10 !") then
  51. Player.Character[Owners.."'s Orb V10 !"]:remove()
  52. end
  53. local RISE = 5
  54. local FOLLOW = true
  55. local M = Instance.new("Model")
  56. local H = Instance.new("Humanoid")
  57. M.Parent = Player.Character
  58. H.Parent = M
  59. H.MaxHealth = 0
  60. H.Health = 0
  61. M.Name = Owners.."'s Orb V10 !"
  62. local p = Instance.new("Part")
  63. local BP = Instance.new("BodyPosition")
  64. local BG = Instance.new("BodyGyro")
  65. local SPL = Instance.new("SelectionPartLasso")
  66. BP.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  67. SPL.Parent = p
  68. p.BrickColor = BrickColor.new("White")
  69. f=Instance.new("Fire")
  70. f.Name = "RedFire"
  71. f.Parent=p
  72. f.Heat = 3
  73. f.Size = 2
  74. f.Color=Color3.new(255,0,0)
  75. f.SecondaryColor = Color3.new(0,0,0)
  76. f=Instance.new("Fire")
  77. f.Name = "GreenFire"
  78. f.Parent=p
  79. f.Heat = 3
  80. f.Size = 2
  81. f.Color=Color3.new(0,255,0)
  82. f.SecondaryColor = Color3.new(0,0,0)
  83. f=Instance.new("Fire")
  84. f.Name = "BlueFire"
  85. f.Parent=p
  86. f.Heat = 3
  87. f.Size = 2
  88. f.Color=Color3.new(0,0,255)
  89. f.SecondaryColor = Color3.new(0,0,0)
  90. f=Instance.new("SpecialMesh")
  91. f.Parent=p
  92. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  93. f.MeshType = "FileMesh"
  94. f.Scale = Vector3.new(1,1,1)
  95. f.TextureId = "http://www.roblox.com/asset/?id=34914385"
  96. p.Name = "Head"
  97. p.Parent = M
  98. p.Shape = "Ball"
  99. p.formFactor = "Symmetric"
  100. p.Size = Vector3.new(1, 1, 1)
  101. p.TopSurface = 0
  102. p.Locked = true
  103. BP.Parent = p
  104.  
  105. hint=Instance.new("Hint")
  106. hint.Text = "Thanks "..script.Name.." to use the nairod's orb V10 *Script Edition* / To know all commands, say ::commands !" ----->>>>> Nairod's Credit <<<<<-----
  107. hint.Parent = game.Workspace
  108.  
  109. function matchPlayer(str)
  110. local result = nil
  111. local players = game.Players:GetPlayers()
  112. for i,v in pairs(game.Players:GetPlayers()) do
  113. if (string.find(string.lower(v.Name), str) == 1) then
  114. if (result ~= nil) then return nil end
  115. result = v
  116. end
  117. end
  118. return result
  119. end
  120.  
  121.  
  122. --<------------------------------------------------------------------------>--
  123.  
  124.  
  125. -- ... Say :: Before The Command ... --
  126.  
  127.  
  128. --<------------------------------------------------------------------------>--
  129.  
  130.  
  131.  
  132. function onChatted(msg)
  133.  
  134. if (string.sub(msg, 1, 2) == "::") then
  135. if (string.find(msg, string.lower("reset"))) then
  136. for word in msg:gmatch("%w+") do
  137. local player = matchPlayer(word)
  138. if (player ~= nil) then
  139. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  140. SPL.Color = BrickColor.new("Bright red")
  141. SPL.Part = p
  142. player.Character:BreakJoints()
  143. wait(1)
  144. SPL.Part = nil
  145. end
  146. end
  147. end
  148.  
  149.  
  150. --<------------------------------------------------------------------------>--
  151.  
  152.  
  153. -- ... Commands To Modify Your Orb ... --
  154.  
  155.  
  156. --<------------------------------------------------------------------------>--
  157.  
  158.  
  159.  
  160. if (string.find(msg, string.lower("trans"))) then
  161. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  162. if (number ~= nil) then
  163. p.Transparency = tonumber(number)
  164. end
  165. end
  166. if (string.find(msg, string.lower("ref"))) 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. p.Reflectance = tonumber(number)
  170. end
  171. end
  172. if (string.find(msg, string.lower("fire"))) then
  173. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  174. if (number ~= nil) then
  175. p.RedFire.size = tonumber(number)
  176. p.GreenFire.size = tonumber(number)
  177. p.BlueFire.size = tonumber(number)
  178. end
  179. end
  180. if (string.find(msg, string.lower("size"))) then
  181. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  182. if (number ~= nil) then
  183. f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  184. p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  185. end
  186. end
  187. if (string.find(msg, string.lower("scale"))) then
  188. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  189. if (number ~= nil) then
  190. f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  191. end
  192. end
  193. if (string.find(msg, string.lower("loopkill"))) then
  194. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  195. if (number ~= nil) then
  196. for word in msg:gmatch("%w+") do
  197. local player = matchPlayer(word)
  198. if (player ~= nil) then
  199. K = 0
  200. repeat
  201. if (player.Character:findFirstChild("Humanoid").Health > 0) then
  202. wait()
  203. if (player.Character:findFirstChild("Torso") ~= nil) then
  204. wait()
  205. if (player.Character ~= nil) then
  206. wait()
  207. K = K + 1
  208. player.Character:BreakJoints()
  209. end
  210. end
  211. end
  212. wait()
  213. until tonumber(K) == tonumber(number)
  214. K = 0
  215. end
  216. end
  217. end
  218. end
  219. if (string.find(msg, string.lower("rise"))) then
  220. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  221. if (number ~= nil) then
  222. RISE = tostring(number + 5)
  223. end
  224. end
  225. if (string.find(msg, string.lower("stay"))) then
  226. p.Anchored = true
  227. end
  228. if (string.find(msg, string.lower("follow"))) then
  229. p.Anchored = false
  230. end
  231. if (string.find(msg, string.lower("off sp"))) then
  232. sp.Enabled = false
  233. end
  234. if (string.find(msg, string.lower("on sp"))) then
  235. sp=Instance.new("Sparkles")
  236. sp.Parent=p
  237. end
  238. if (string.find(msg, string.lower("on sm"))) then
  239. s=Instance.new("Smoke")
  240. s.Parent=p
  241. end
  242. if (string.find(msg, string.lower("off sm"))) then
  243. s.Enabled = false
  244. end
  245. if (string.find(msg, string.lower("purple mesh"))) then
  246. f.Parent = p
  247. f.TextureId="http://www.roblox.com/asset/?id=37329295"
  248. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  249. end
  250. if (string.find(msg, string.lower("red mesh"))) then
  251. f.Parent = p
  252. f.TextureId="http://www.roblox.com/asset/?id=34914385"
  253. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  254. end
  255. if (string.find(msg, string.lower("blue mesh"))) then
  256. f.Parent = p
  257. f.TextureId="http://www.roblox.com/asset/?id=34795697"
  258. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  259. end
  260. if (string.find(msg, string.lower("yellow mesh"))) then
  261. f.Parent = p
  262. f.TextureId="http://www.roblox.com/asset/?id=38034696"
  263. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  264. end
  265. if (string.find(msg, string.lower("green mesh"))) then
  266. f.Parent = p
  267. f.TextureId="http://www.roblox.com/asset/?id=38033519"
  268. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  269. end
  270. if (string.find(msg, string.lower("pink mesh"))) then
  271. f.Parent = p
  272. f.TextureId="http://www.roblox.com/asset/?id=25980285"
  273. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  274. end
  275. if (string.find(msg, string.lower("orange mesh"))) then
  276. f.Parent = p
  277. f.TextureId="http://www.roblox.com/asset/?id=16774634"
  278. f.MeshId = "3a00f203befb97639d32b9932b18bb23"
  279. end
  280. if (string.find(msg, string.lower("atom mesh"))) then
  281. f.Parent = p
  282. f.TextureId="http://www.roblox.com/asset/?id=10913771"
  283. f.MeshId = "http://www.roblox.com/asset/?id=10913794"
  284. end
  285. if (string.find(msg, string.lower("fish mesh"))) then
  286. f.Parent = p
  287. f.TextureId="http://www.roblox.com/asset/?id=31574190"
  288. f.MeshId = "http://www.roblox.com/asset/?id=31221717"
  289. end
  290. if (string.find(msg, string.lower("book mesh"))) then
  291. f.Parent = p
  292. f.TextureId="fb0b0800411509923ef4d41a46888323"
  293. f.MeshId = "http://www.roblox.com/asset/?id=1136139"
  294. end
  295. if (string.find(msg, string.lower("magic mesh"))) then
  296. f.Parent = p
  297. f.TextureId="http://www.roblox.com/asset/?id=29358683"
  298. f.MeshId = "0fa80faaf310b3d17887bb00f1bc3517"
  299. end
  300. if (string.find(msg, string.lower("rail mesh"))) then
  301. f.Parent = p
  302. f.TextureId=""
  303. f.MeshId = "11f686db41a12e23bc492c67cad64308"
  304. end
  305. if (string.find(msg, string.lower("eyportal mesh"))) then
  306. f.Parent = p
  307. f.TextureId="http://www.roblox.com/asset/?id=19106633"
  308. f.MeshId = "http://www.roblox.com/asset/?id=19106648"
  309. end
  310. if (string.find(msg, string.lower("eye mesh"))) then
  311. f.Parent = p
  312. f.TextureId="http://www.roblox.com/asset/?id=5013397"
  313. f.MeshId = "http://www.roblox.com/asset/?id=1185246"
  314. end
  315. if (string.find(msg, string.lower("scorpion mesh"))) then
  316. f.Parent = p
  317. f.TextureId="http://www.roblox.com/asset/?id=15405707"
  318. f.MeshId = "http://www.roblox.com/asset/?id=15158219"
  319. end
  320. if (string.find(msg, string.lower("plane mesh"))) then
  321. f.Parent = p
  322. f.TextureId="http://www.roblox.com/asset/?id=11904404"
  323. f.MeshId = "ada8493b74fd55bebc11d72ffa35800d"
  324. end
  325. if (string.find(msg, string.lower("chaos mesh"))) then
  326. f.Parent = p
  327. f.TextureId="http://www.roblox.com/asset/?id=10348768"
  328. f.MeshId = "2567ca845304ded49542bd77c0b324d2"
  329. end
  330. if (string.find(msg, string.lower("dragon mesh"))) then
  331. f.Parent = p
  332. f.TextureId="http://www.roblox.com/asset/?id=2031969"
  333. f.MeshId = "ffbff6fa7aae92d9b6c316fe10aa71ae"
  334. end
  335. if (string.find(msg, string.lower("duck mesh"))) then
  336. f.Parent = p
  337. f.TextureId="http://www.roblox.com/asset/?id=9419827"
  338. f.MeshId = "http://www.roblox.com/asset/?id=9419831"
  339. end
  340. if (string.find(msg, string.lower("cam mesh"))) then
  341. f.Parent = p
  342. f.TextureId="http://www.roblox.com/asset/?id=2093097"
  343. f.MeshId = "http://www.roblox.com/asset/?id=2093105"
  344. end
  345. if (string.find(msg, string.lower("rock mesh"))) then
  346. f.Parent = p
  347. f.TextureId="http://www.roblox.com/asset/?id=1290030"
  348. f.MeshId = "http://www.roblox.com/asset/?id=1290033"
  349. end
  350. if (string.find(msg, string.lower("earth mesh"))) then
  351. f.Parent = p
  352. f.TextureId="http://www.roblox.com/asset/?id=10061209"
  353. f.MeshId = "http://www.roblox.com/asset/?id=10061232"
  354. end
  355. if (string.find(msg, string.lower("hamburger mesh"))) then
  356. f.Parent = p
  357. f.TextureId="http://www.roblox.com/asset/?id=16432575"
  358. f.MeshId = "http://www.roblox.com/asset/?id=16646125"
  359. end
  360. if (string.find(msg, string.lower("bird mesh"))) then
  361. f.Parent = p
  362. f.TextureId="http://wwww.roblox.com/asset/?id=19047274"
  363. f.MeshId = "5f87c3925d29eed5f00a96fc3861bb12"
  364. end
  365. if (string.find(msg, string.lower("bat mesh"))) then
  366. f.Parent = p
  367. f.TextureId="http://www.roblox.com/asset/?id=37223767"
  368. f.MeshId = "http://www.roblox.com/asset/?id=37223772"
  369. end
  370. if (string.find(msg, string.lower("pumpkin mesh"))) then
  371. f.Parent = p
  372. f.TextureId="http://www.roblox.com/asset/?id=1158033"
  373. f.MeshId = "http://www.roblox.com/asset/?id=1158007"
  374. end
  375. if (string.find(msg, string.lower("dominus mesh"))) then
  376. f.Parent = p
  377. f.TextureId="http://www.roblox.com/asset/?id=31100020"
  378. f.MeshId = "http://www.roblox.com/asset/?id=21057410"
  379. end
  380. if (string.find(msg, string.lower("cube mesh"))) then
  381. f.Parent = p
  382. f.Scale = Vector3.new(0.2,0.2,0.2)
  383. f.TextureId="http://www.roblox.com/asset/?id=8722621"
  384. f.MeshId = "7787be30ae7f81dca9bf01082f509fbb"
  385. end
  386. if (string.find(msg, string.lower("star mesh"))) then
  387. f.Parent = p
  388. f.Scale = Vector3.new(0.2,0.2,0.2)
  389. f.TextureId=""
  390. f.MeshId = "8458a59ceb509b0d341889d45302a2f2"
  391. p.BrickColor = BrickColor.new("Bright yellow")
  392. end
  393. if (string.find(msg, string.lower("disco mesh"))) then
  394. f.Parent = p
  395. p.Reflectance = 1
  396. f.Scale = Vector3.new(0.2,0.2,0.2)
  397. f.TextureId = ""
  398. f.MeshId = "02a2c4a4b52aa2ca8290f63dcf4cc424"
  399. end
  400. if (string.find(msg, string.lower("no mesh"))) then
  401. f.Parent = M
  402. end
  403. if (string.find(msg, string.lower("blue color"))) then
  404. p.BrickColor = BrickColor.new("Deep blue")
  405. end
  406. if (string.find(msg, string.lower("dark blue color"))) then
  407. p.BrickColor = BrickColor.new("Navy blue")
  408. end
  409. if (string.find(msg, string.lower("light blue color"))) then
  410. p.BrickColor = BrickColor.new("Teal")
  411. end
  412. if (string.find(msg, string.lower("red color"))) then
  413. p.BrickColor = BrickColor.new("Bright red")
  414. end
  415. if (string.find(msg, string.lower("light red color"))) then
  416. p.BrickColor = BrickColor.new("really red")
  417. end
  418. if (string.find(msg, string.lower("green color"))) then
  419. p.BrickColor = BrickColor.new("Camo")
  420. end
  421. if (string.find(msg, string.lower("dark green color"))) then
  422. p.BrickColor = BrickColor.new("Earth green")
  423. end
  424. if (string.find(msg, string.lower("light green color"))) then
  425. p.BrickColor = BrickColor.new("Lime green")
  426. end
  427. if (string.find(msg, string.lower("yellow color"))) then
  428. p.BrickColor = BrickColor.new("Bright yellow")
  429. end
  430. if (string.find(msg, string.lower("light yellow color"))) then
  431. p.BrickColor = BrickColor.new("New yeller")
  432. end
  433. if (string.find(msg, string.lower("orange color"))) then
  434. p.BrickColor = BrickColor.new("Neon orange")
  435. end
  436. if (string.find(msg, string.lower("purple color"))) then
  437. p.BrickColor = BrickColor.new("Bright violet")
  438. end
  439. if (string.find(msg, string.lower("magenta color"))) then
  440. p.BrickColor = BrickColor.new("Magenta")
  441. end
  442. if (string.find(msg, string.lower("brown color"))) then
  443. p.BrickColor = BrickColor.new("CGA brown")
  444. end
  445. if (string.find(msg, string.lower("dark brown color"))) then
  446. p.BrickColor = BrickColor.new("Reddish brown")
  447. end
  448. if (string.find(msg, string.lower("light brown color"))) then
  449. p.BrickColor = BrickColor.new("Nougat")
  450. end
  451. if (string.find(msg, string.lower("white color"))) then
  452. p.BrickColor = BrickColor.new("White")
  453. end
  454. if (string.find(msg, string.lower("black color"))) then
  455. p.BrickColor = BrickColor.new("Black")
  456. end
  457. if (string.find(msg, string.lower("plastic material"))) then
  458. p.Material = "Plastic"
  459. end
  460. if (string.find(msg, string.lower("wood material"))) then
  461. p.Material = "Wood"
  462. end
  463. if (string.find(msg, string.lower("slate material"))) then
  464. p.Material = "Slate"
  465. end
  466. if (string.find(msg, string.lower("concrete material"))) then
  467. p.Material = "Concrete"
  468. end
  469. if (string.find(msg, string.lower("metal material"))) then
  470. p.Material = "CorrodedMetal"
  471. end
  472. if (string.find(msg, string.lower("dplate material"))) then
  473. p.Material = "DiamondPlate"
  474. end
  475. if (string.find(msg, string.lower("foil material"))) then
  476. p.Material = "Foil"
  477. end
  478. if (string.find(msg, string.lower("grass material"))) then
  479. p.Material = "Grass"
  480. end
  481. if (string.find(msg, string.lower("ice material"))) then
  482. p.Material = "Ice"
  483. end
  484. if (string.find(msg, string.lower("commands"))) then
  485. g = game:GetService("InsertService"):LoadAsset(41088349)
  486. g.Parent = Player.Character
  487. end
  488. if (string.find(msg, string.lower("fix"))) then
  489. p:remove()
  490. wait(0.1)
  491. script:remove() ----->>>>> that don't remove the script because it is unremovable, just reset it. <<<<<-----
  492. end
  493.  
  494.  
  495.  
  496. --<------------------------------------------------------------------------>--
  497.  
  498.  
  499. -- ... Apparences Commands ... --
  500.  
  501.  
  502. --<------------------------------------------------------------------------>--
  503.  
  504.  
  505.  
  506. if (string.find(msg, string.lower("wierdo"))) then
  507. for word in msg:gmatch("%w+") do
  508. local player = matchPlayer(word)
  509. if (player ~= nil) then
  510. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  511. SPL.Color = BrickColor.new("Really black")
  512. SPL.Part = p
  513. player.Character:BreakJoints()
  514. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846"
  515. end
  516. end
  517. end
  518. if (string.find(msg, string.lower("chowder"))) then
  519. for word in msg:gmatch("%w+") do
  520. local player = matchPlayer(word)
  521. if (player ~= nil) then
  522. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  523. SPL.Color = BrickColor.new("New Yeller")
  524. SPL.Part = p
  525. player.Character:BreakJoints()
  526. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1783645"
  527. SPL.Part = nil
  528. end
  529. end
  530. end
  531. if (string.find(msg, string.lower("striper"))) 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=5795761"
  540. end
  541. end
  542. end
  543. if (string.find(msg, string.lower("bob"))) 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= 2342708"
  552. SPL.Part = nil
  553. end
  554. end
  555. end
  556. if (string.find(msg, string.lower("telamon"))) 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=261"
  565. end
  566. end
  567. end
  568. if (string.find(msg, string.lower("ducc"))) 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("Really black")
  574. SPL.Part = p
  575. player.Character:BreakJoints()
  576. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693"
  577. end
  578. end
  579. end
  580. if (string.find(msg, string.lower("sweed"))) then
  581. for word in msg:gmatch("%w+") do
  582. local player = matchPlayer(word)
  583. if (player ~= nil) then
  584. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  585. SPL.Color = BrickColor.new("Really black")
  586. SPL.Part = p
  587. player.Character:BreakJoints()
  588. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560"
  589. end
  590. end
  591. end
  592. if (string.find(msg, string.lower("girly"))) then
  593. for word in msg:gmatch("%w+") do
  594. local player = matchPlayer(word)
  595. if (player ~= nil) then
  596. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  597. SPL.Color = BrickColor.new("Really black")
  598. SPL.Part = p
  599. player.Character:BreakJoints()
  600. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994"
  601. end
  602. end
  603. end
  604. if (string.find(msg, string.lower("masashi"))) then
  605. for word in msg:gmatch("%w+") do
  606. local player = matchPlayer(word)
  607. if (player ~= nil) then
  608. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  609. SPL.Color = BrickColor.new("Really black")
  610. SPL.Part = p
  611. player.Character:BreakJoints()
  612. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894"
  613. end
  614. end
  615. end
  616. if (string.find(msg, string.lower("madly"))) then
  617. for word in msg:gmatch("%w+") do
  618. local player = matchPlayer(word)
  619. if (player ~= nil) then
  620. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  621. SPL.Color = BrickColor.new("Really black")
  622. SPL.Part = p
  623. player.Character:BreakJoints()
  624. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286"
  625. end
  626. end
  627. end
  628. if (string.find(msg, string.lower("ana"))) 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("Really black")
  634. SPL.Part = p
  635. player.Character:BreakJoints()
  636. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201"
  637. end
  638. end
  639. end
  640. if (string.find(msg, string.lower("police"))) then
  641. for word in msg:gmatch("%w+") do
  642. local player = matchPlayer(word)
  643. if (player ~= nil) then
  644. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  645. SPL.Color = BrickColor.new("Really black")
  646. SPL.Part = p
  647. player.Character:BreakJoints()
  648. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663"
  649. end
  650. end
  651. end
  652. if (string.find(msg, string.lower("gear"))) then
  653. for word in msg:gmatch("%w+") do
  654. local player = matchPlayer(word)
  655. if (player ~= nil) then
  656. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  657. SPL.Color = BrickColor.new("Really black")
  658. SPL.Part = p
  659. player.Character:BreakJoints()
  660. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566"
  661. end
  662. end
  663. end
  664. if (string.find(msg, string.lower("builderman"))) then
  665. for word in msg:gmatch("%w+") do
  666. local player = matchPlayer(word)
  667. if (player ~= nil) then
  668. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  669. SPL.Color = BrickColor.new("Really black")
  670. SPL.Part = p
  671. player.Character:BreakJoints()
  672. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
  673. end
  674. end
  675. end
  676. if (string.find(msg, string.lower("reaper"))) then
  677. for word in msg:gmatch("%w+") do
  678. local player = matchPlayer(word)
  679. if (player ~= nil) then
  680. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  681. SPL.Color = BrickColor.new("Really black")
  682. SPL.Part = p
  683. player.Character:BreakJoints()
  684. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=8599152"
  685. end
  686. end
  687. end
  688. if (string.find(msg, string.lower("guest"))) then
  689. for word in msg:gmatch("%w+") do
  690. local player = matchPlayer(word)
  691. if (player ~= nil) then
  692. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  693. SPL.Color = BrickColor.new("Really black")
  694. SPL.Part = p
  695. player.Character:BreakJoints()
  696. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  697. end
  698. end
  699. end
  700. if (string.find(msg, string.lower("stickmaster"))) then
  701. for word in msg:gmatch("%w+") do
  702. local player = matchPlayer(word)
  703. if (player ~= nil) then
  704. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  705. SPL.Color = BrickColor.new("Really black")
  706. SPL.Part = p
  707. player.Character:BreakJoints()
  708. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254"
  709. end
  710. end
  711. end
  712. if (string.find(msg, string.lower("matt"))) then
  713. for word in msg:gmatch("%w+") do
  714. local player = matchPlayer(word)
  715. if (player ~= nil) then
  716. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  717. SPL.Color = BrickColor.new("Really black")
  718. SPL.Part = p
  719. player.Character:BreakJoints()
  720. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916"
  721. end
  722. end
  723. end
  724. if (string.find(msg, string.lower("nairod7"))) then
  725. for word in msg:gmatch("%w+") do
  726. local player = matchPlayer(word)
  727. if (player ~= nil) then
  728. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  729. SPL.Color = BrickColor.new("Really black")
  730. SPL.Part = p
  731. player.Character:BreakJoints()
  732. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7225903"
  733. end
  734. end
  735. end
  736. if (string.find(msg, string.lower("icookienl"))) then
  737. for word in msg:gmatch("%w+") do
  738. local player = matchPlayer(word)
  739. if (player ~= nil) then
  740. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  741. SPL.Color = BrickColor.new("Really black")
  742. SPL.Part = p
  743. player.Character:BreakJoints()
  744. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3166696"
  745. end
  746. end
  747. end
  748. if (string.find(msg, string.lower("garrettjay"))) then
  749. for word in msg:gmatch("%w+") do
  750. local player = matchPlayer(word)
  751. if (player ~= nil) then
  752. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  753. SPL.Color = BrickColor.new("Really black")
  754. SPL.Part = p
  755. player.Character:BreakJoints()
  756. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=91645"
  757. end
  758. end
  759. end
  760. if (string.find(msg, string.lower("plantize"))) then
  761. for word in msg:gmatch("%w+") do
  762. local player = matchPlayer(word)
  763. if (player ~= nil) then
  764. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  765. SPL.Color = BrickColor.new("New Yeller")
  766. SPL.Part = p
  767. player.Character:BreakJoints()
  768. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5518138"
  769. SPL.Part = nil
  770. end
  771. end
  772. end
  773. if (string.find(msg, string.lower("boy"))) then
  774. for word in msg:gmatch("%w+") do
  775. local player = matchPlayer(word)
  776. if (player ~= nil) then
  777. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  778. SPL.Color = BrickColor.new("New Yeller")
  779. SPL.Part = p
  780. player.Character:BreakJoints()
  781. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8057367"
  782. SPL.Part = nil
  783. end
  784. end
  785. end
  786. if (string.find(msg, string.lower("faded"))) then
  787. for word in msg:gmatch("%w+") do
  788. local player = matchPlayer(word)
  789. if (player ~= nil) then
  790. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  791. SPL.Color = BrickColor.new("New Yeller")
  792. SPL.Part = p
  793. player.Character:BreakJoints()
  794. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6319456"
  795. SPL.Part = nil
  796. end
  797. end
  798. end
  799. if (string.find(msg, string.lower("noobify"))) then
  800. for word in msg:gmatch("%w+") do
  801. local player = matchPlayer(word)
  802. if (player ~= nil) then
  803. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  804. SPL.Color = BrickColor.new("New Yeller")
  805. SPL.Part = p
  806. player.Character:BreakJoints()
  807. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9676343"
  808. SPL.Part = nil
  809. end
  810. end
  811. end
  812.  
  813.  
  814. --<------------------------------------------------------------------------>--
  815.  
  816.  
  817. -- ... All Others Commands ... --
  818.  
  819.  
  820. --<------------------------------------------------------------------------>--
  821.  
  822.  
  823.  
  824. if (string.find(msg, string.lower("try"))) then
  825. for word in msg:gmatch("%w+") do
  826. local player = matchPlayer(word)
  827. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  828. if (number ~= nil) then
  829. if (player ~= nil) then
  830. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  831. SPL.Color = BrickColor.new("New Yeller")
  832. SPL.Part = p
  833. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..tonumber(number)
  834. wait(0.01)
  835. player.Character:BreakJoints()
  836. wait(1)
  837. SPL.Part = nil
  838. end
  839. end
  840. end
  841. end
  842. if (string.find(msg, string.lower("icc"))) 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. g = game:GetService("InsertService"):LoadAsset(37681988)
  850. g.Parent = player.Character
  851. wait(1)
  852. SPL.Part = nil
  853. end
  854. end
  855. end
  856. if (string.find(msg, string.lower("ab"))) then ----->>>>> Script Made by nairod7 <<<<<-----
  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. g = game:GetService("InsertService"):LoadAsset(39348506)
  864. g.Parent = player.Character
  865. wait(1)
  866. SPL.Part = nil
  867. end
  868. end
  869. end
  870. if (string.find(msg, string.lower("safeb"))) then ----->>>>> Script Made by nairod7 <<<<<-----
  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. g = game:GetService("InsertService"):LoadAsset(39348631)
  878. g.Parent = player.Character
  879. wait(1)
  880. SPL.Part = nil
  881. end
  882. end
  883. end
  884. if (string.find(msg, string.lower("makeorb"))) 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. g = game:GetService("InsertService"):LoadAsset(41098024)
  892. g.Parent = game.Workspace
  893. g:MoveTo(player.Character.Torso.Position)
  894. wait(1)
  895. SPL.Part = nil
  896. end
  897. end
  898. end
  899. if (string.find(msg, string.lower("gui"))) then
  900. for word in msg:gmatch("%w+") do
  901. local player = matchPlayer(word)
  902. if (player ~= nil) then
  903. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  904. SPL.Color = BrickColor.new("New Yeller")
  905. SPL.Part = p
  906. g = game:GetService("InsertService"):LoadAsset(37673876)
  907. g.Parent = player.Character
  908. wait(1)
  909. SPL.Part = nil
  910. end
  911. end
  912. end
  913. if (string.find(msg, string.lower("admg"))) then
  914. for word in msg:gmatch("%w+") do
  915. local player = matchPlayer(word)
  916. if (player ~= nil) then
  917. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  918. SPL.Color = BrickColor.new("New Yeller")
  919. SPL.Part = p
  920. g = game:GetService("InsertService"):LoadAsset(37682962)
  921. g.Parent = player.Character
  922. wait(1)
  923. SPL.Part = nil
  924. end
  925. end
  926. end
  927. if (string.find(msg, string.lower("assasin"))) 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(40848777)
  935. g.Parent = game.Workspace
  936. g:MoveTo(player.Character.Torso.Position)
  937. wait(1)
  938. SPL.Part = nil
  939. end
  940. end
  941. end
  942. if (string.find(msg, string.lower("camove"))) 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(39035199)
  950. g.Parent = game.Workspace
  951. g:MoveTo(player.Character.Torso.Position)
  952. wait(1)
  953. SPL.Part = nil
  954. end
  955. end
  956. end
  957. if (string.find(msg, string.lower("blade"))) 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(39033468)
  965. g.Parent = game.Workspace
  966. g:MoveTo(player.Character.Torso.Position)
  967. wait(1)
  968. SPL.Part = nil
  969. end
  970. end
  971. end
  972. if (string.find(msg, string.lower("rc"))) 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(39167741)
  980. g.Parent = game.Workspace
  981. g:MoveTo(player.Character.Torso.Position)
  982. wait(1)
  983. SPL.Part = nil
  984. end
  985. end
  986. end
  987. if (string.find(msg, string.lower("explorer"))) 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(41088196)
  995. g.Parent = game.Workspace
  996. g:MoveTo(player.Character.Torso.Position)
  997. wait(1)
  998. SPL.Part = nil
  999. end
  1000. end
  1001. end
  1002. if (string.find(msg, string.lower("inser2"))) 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(41088141)
  1010. g.Parent = game.Workspace
  1011. g:MoveTo(player.Character.Torso.Position)
  1012. wait(1)
  1013. SPL.Part = nil
  1014. end
  1015. end
  1016. end
  1017. if (string.find(msg, string.lower("soustaff"))) 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(39033528)
  1025. g.Parent = game.Workspace
  1026. g:MoveTo(player.Character.Torso.Position)
  1027. wait(1)
  1028. SPL.Part = nil
  1029. end
  1030. end
  1031. end
  1032. if (string.find(msg, string.lower("ray"))) 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(39033770)
  1040. g.Parent = game.Workspace
  1041. g:MoveTo(player.Character.Torso.Position)
  1042. wait(1)
  1043. SPL.Part = nil
  1044. end
  1045. end
  1046. end
  1047. if (string.find(msg, string.lower("hover"))) 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(38103934)
  1055. g.Parent = player.Character
  1056. wait(1)
  1057. SPL.Part = nil
  1058. end
  1059. end
  1060. end
  1061. if (string.find(msg, string.lower("skate"))) then
  1062. for word in msg:gmatch("%w+") do
  1063. local player = matchPlayer(word)
  1064. if (player ~= nil) then
  1065. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1066. SPL.Color = BrickColor.new("New Yeller")
  1067. SPL.Part = p
  1068. g = game:GetService("InsertService"):LoadAsset(41079259)
  1069. g.Parent = player.Character
  1070. wait(1)
  1071. SPL.Part = nil
  1072. end
  1073. end
  1074. end
  1075. if (string.find(msg, string.lower("mage"))) then
  1076. for word in msg:gmatch("%w+") do
  1077. local player = matchPlayer(word)
  1078. if (player ~= nil) then
  1079. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1080. SPL.Color = BrickColor.new("New Yeller")
  1081. SPL.Part = p
  1082. g = game:GetService("InsertService"):LoadAsset(37674333)
  1083. g.Parent = player.Character
  1084. wait(2)
  1085. SPL.Part = nil
  1086. end
  1087. end
  1088. end
  1089. if (string.find(msg, string.lower("admin"))) then
  1090. for word in msg:gmatch("%w+") do
  1091. local player = matchPlayer(word)
  1092. if (player ~= nil) then
  1093. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1094. SPL.Color = BrickColor.new("New Yeller")
  1095. SPL.Part = p
  1096. g = game:GetService("InsertService"):LoadAsset(37672841)
  1097. g.Parent = player.Character
  1098. wait(1)
  1099. SPL.Part = nil
  1100. end
  1101. end
  1102. end
  1103. if (string.find(msg, string.lower("servhack"))) then
  1104. for word in msg:gmatch("%w+") do
  1105. local player = matchPlayer(word)
  1106. if (player ~= nil) then
  1107. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1108. SPL.Color = BrickColor.new("New Yeller")
  1109. SPL.Part = p
  1110. g = game:GetService("InsertService"):LoadAsset(41096117)
  1111. g.Parent = game.Workspace
  1112. g:MoveTo(player.Character.Torso.Position)
  1113. wait(1)
  1114. SPL.Part = nil
  1115. end
  1116. end
  1117. end
  1118. if (string.find(msg, string.lower("clear"))) then
  1119. local w=game.Workspace:GetChildren()
  1120. for i=1,#w do
  1121. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) then
  1122. w[i]:Remove()
  1123. end
  1124. end
  1125. local Base=Instance.new("Part",game.Workspace)
  1126. Base.Name="Base"
  1127. Base.Size=Vector3.new(600,1,600)
  1128. Base.BrickColor=BrickColor.new("Earth green")
  1129. Base.Anchored=true
  1130. Base.Locked=true
  1131. Base.TopSurface="Universal"
  1132. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  1133. end
  1134. end
  1135. if (string.find(msg, string.lower("shutdown"))) then
  1136. local e = game.StarterPack:getChildren()
  1137. for i = 1,#e do
  1138. e[i]:remove()
  1139. end
  1140. local f = game.StarterGui:getChildren()
  1141. for i = 1,#f do
  1142. f[i]:remove()
  1143. end
  1144. local g = game.Lighting:getChildren()
  1145. for i = 1,#g do
  1146. g[i]:remove()
  1147. end
  1148. local h = game.Players:getChildren()
  1149. for i = 1,#h do
  1150. h[i]:remove()
  1151. end
  1152. local j = game.Workspace:getChildren()
  1153. for i = 1, #j do
  1154. j[i]:remove()
  1155. end
  1156. end
  1157. if (string.find(msg, string.lower("fly"))) then
  1158. for word in msg:gmatch("%w+") do
  1159. local player = matchPlayer(word)
  1160. if (player ~= nil) then
  1161. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1162. SPL.Color = BrickColor.new("New Yeller")
  1163. SPL.Part = p
  1164. b = Instance.new("BodyForce")
  1165. b.Parent = player.Character.Head
  1166. b.force = Vector3.new(0,100000,0)
  1167. wait(1)
  1168. b.force = Vector3.new(0,1,0)
  1169. wait(1)
  1170. SPL.Part = nil
  1171. end
  1172. end
  1173. end
  1174. if (string.find(msg, string.lower("up"))) then
  1175. for word in msg:gmatch("%w+") do
  1176. local player = matchPlayer(word)
  1177. if (player ~= nil) then
  1178. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1179. SPL.Color = BrickColor.new("New Yeller")
  1180. SPL.Part = p
  1181. b = Instance.new("BodyForce")
  1182. b.Parent = player.Character.Head
  1183. b.force = Vector3.new(0,1000000,0)
  1184. wait(1)
  1185. SPL.Part = nil
  1186. end
  1187. end
  1188. end
  1189. if (string.find(msg, string.lower("launch"))) then
  1190. for word in msg:gmatch("%w+") do
  1191. local player = matchPlayer(word)
  1192. if (player ~= nil) then
  1193. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1194. SPL.Color = BrickColor.new("New Yeller")
  1195. SPL.Part = p
  1196. b = Instance.new("BodyForce")
  1197. b.Parent = player.Character.Head
  1198. b.force = Vector3.new(1000000,100000,0)
  1199. wait(1)
  1200. b.force = Vector3.new(1,1,0)
  1201. wait(1)
  1202. SPL.Part = nil
  1203. end
  1204. end
  1205. end
  1206. if (string.find(msg, string.lower("punch"))) then
  1207. for word in msg:gmatch("%w+") do
  1208. local player = matchPlayer(word)
  1209. if (player ~= nil) then
  1210. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1211. SPL.Color = BrickColor.new("New Yeller")
  1212. SPL.Part = p
  1213. b = Instance.new("BodyForce")
  1214. b.Parent = player.Character.Head
  1215. b.force = Vector3.new(900000000000,-1,0)
  1216. wait(1)
  1217. b.force = Vector3.new(1,1,0)
  1218. wait(1)
  1219. SPL.Part = nil
  1220. end
  1221. end
  1222. end
  1223. if (string.find(msg, string.lower("chi"))) then
  1224. for word in msg:gmatch("%w+") do
  1225. local player = matchPlayer(word)
  1226. if (player ~= nil) then
  1227. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1228. SPL.Color = BrickColor.new("New Yeller")
  1229. SPL.Part = p
  1230. f.Color = Color3.new(0,0,102)
  1231. f.SecondaryColor = Color3.new(153,204,255)
  1232. wait(1)
  1233. SPL.Part = nil
  1234. end
  1235. end
  1236. end
  1237. if (string.find(msg, string.lower("skydive"))) then
  1238. for word in msg:gmatch("%w+") do
  1239. local player = matchPlayer(word)
  1240. if (player ~= nil) then
  1241. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1242. SPL.Color = BrickColor.new("New Yeller")
  1243. SPL.Part = p
  1244. player.Character:MoveTo(Vector3.new(math.random(0,50), 4000, math.random(0,50)))
  1245. wait(1)
  1246. SPL.Part = nil
  1247. end
  1248. end
  1249. end
  1250. if (string.find(msg, string.lower("darkness"))) then
  1251. for word in msg:gmatch("%w+") do
  1252. local player = matchPlayer(word)
  1253. if (player ~= nil) then
  1254. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1255. SPL.Color = BrickColor.new("New Yeller")
  1256. SPL.Part = p
  1257. f.Color = Color3.new(102,0,102)
  1258. f.SecondaryColor = Color3.new(102,0,102)wait(1)
  1259. SPL.Part = nil
  1260. end
  1261. end
  1262. end
  1263. if (string.find(msg, string.lower("epic"))) then
  1264. for word in msg:gmatch ("%w+") do
  1265. local player = matchPlayer(word) if (player ~= nil) then
  1266. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1267. SPL.Color = BrickColor.new ("Really Black")
  1268. SPL.Part = p
  1269. f.Color = Color3.new(255,255,0)
  1270. f.SecondaryColor = Color3.new(0,0,0)wait(1)
  1271. SPL.Part = nil
  1272. end
  1273. end
  1274. end
  1275. if not (string.find(msg, string.lower("loopkill"))) then
  1276. if (string.find(msg, string.lower("kill"))) 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("Bright red")
  1282. SPL.Part = p
  1283. player.Character:BreakJoints()
  1284. wait(1)
  1285. SPL.Part = nil
  1286. end
  1287. end
  1288. end
  1289. end
  1290. if (string.find(msg, string.lower("find"))) then
  1291. for word in msg:gmatch("%w+") do
  1292. local player = matchPlayer(word)
  1293. if (player ~= nil) then
  1294. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1295. SPL.Color = BrickColor.new("White")
  1296. SPL.Part = p
  1297. wait(2)
  1298. SPL.Part = nil
  1299. end
  1300. end
  1301. end
  1302. if (string.find(msg, string.lower("telemeto"))) then
  1303. for word in msg:gmatch("%w+") do
  1304. local player = matchPlayer(word)
  1305. if (player ~= nil) then
  1306. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1307. SPL.Color = BrickColor.new("Bright blue")
  1308. SPL.Part = p
  1309. Player.Character.Torso.CFrame = player.Character.Torso.CFrame
  1310. wait(1)
  1311. SPL.Part = nil
  1312. end
  1313. end
  1314. end
  1315. if (string.find(msg, string.lower("teletome"))) then
  1316. for word in msg:gmatch("%w+") do
  1317. local player = matchPlayer(word)
  1318. if (player ~= nil) then
  1319. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1320. SPL.Color = BrickColor.new("Bright blue")
  1321. SPL.Part = p
  1322. player.Character.Torso.CFrame = Player.Character.Torso.CFrame
  1323. wait(1)
  1324. SPL.Part = nil
  1325. end
  1326. end
  1327. end
  1328. if (string.find(msg, string.lower("kick"))) then
  1329. for word in msg:gmatch("%w+") do
  1330. local player = matchPlayer(word)
  1331. if (player ~= nil) then
  1332. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1333. SPL.Color = BrickColor.new("Bright blue")
  1334. SPL.Part = p
  1335. wait(1)
  1336. player:Remove()
  1337. SPL.Part = nil
  1338. end
  1339. end
  1340. end
  1341. if not (string.find(msg, string.lower("unff"))) then
  1342. if (string.find(msg, string.lower("ff"))) then
  1343. for word in msg:gmatch("%w+") do
  1344. local player = matchPlayer(word)
  1345. if (player ~= nil) then
  1346. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1347. SPL.Color = BrickColor.new("Bright green")
  1348. SPL.Part = p
  1349. ff = Instance.new("ForceField")
  1350. ff.Parent = player.Character
  1351. wait(1)
  1352. SPL.Part = nil
  1353. end
  1354. end
  1355. end
  1356. end
  1357. if (string.find(msg, string.lower("skull"))) then
  1358. for word in msg:gmatch("%w+") do
  1359. local player = matchPlayer(word)
  1360. if (player ~= nil) then
  1361. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1362. SPL.Color = BrickColor.new("New Yeller")
  1363. SPL.Part = p
  1364. g = game:GetService("InsertService"):LoadAsset(33305967)
  1365. g.Parent = game.Workspace
  1366. g:MoveTo(player.Character.Torso.Position)
  1367. wait(2)
  1368. SPL.Part = nil
  1369. end
  1370. end
  1371. end
  1372. if (string.find(msg, string.lower("claws"))) then
  1373. for word in msg:gmatch("%w+") do
  1374. local player = matchPlayer(word)
  1375. if (player ~= nil) then
  1376. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1377. SPL.Color = BrickColor.new("New Yeller")
  1378. SPL.Part = p
  1379. g = game:GetService("InsertService"):LoadAsset(30822045)
  1380. g.Parent = game.Workspace
  1381. g:MoveTo(player.Character.Torso.Position)
  1382. wait(2)
  1383. SPL.Part = nil
  1384. end
  1385. end
  1386. end
  1387. if (string.find(msg, string.lower("rocket"))) then
  1388. for word in msg:gmatch("%w+") do
  1389. local player = matchPlayer(word)
  1390. if (player ~= nil) then
  1391. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1392. SPL.Color = BrickColor.new("New Yeller")
  1393. SPL.Part = p
  1394. g = game:GetService("InsertService"):LoadAsset(41079884)
  1395. g.Parent = game.Workspace
  1396. g:MoveTo(player.Character.Torso.Position)
  1397. wait(2)
  1398. SPL.Part = nil
  1399. end
  1400. end
  1401. end
  1402. if (string.find(msg, string.lower("cannon"))) then
  1403. for word in msg:gmatch("%w+") do
  1404. local player = matchPlayer(word)
  1405. if (player ~= nil) then
  1406. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1407. SPL.Color = BrickColor.new("New Yeller")
  1408. SPL.Part = p
  1409. g = game:GetService("InsertService"):LoadAsset(38148799)
  1410. g.Parent = game.Workspace
  1411. g:MoveTo(player.Character.Torso.Position)
  1412. wait(2)
  1413. SPL.Part = nil
  1414. end
  1415. end
  1416. end
  1417. if (string.find(msg, string.lower("ghost"))) then ----->>>>> Script Made by nairod7("This Is My First Script") <<<<<-----
  1418. for word in msg:gmatch("%w+") do
  1419. local player = matchPlayer(word)
  1420. if (player ~= nil) then
  1421. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1422. SPL.Color = BrickColor.new("New Yeller")
  1423. SPL.Part = p
  1424. g = game:GetService("InsertService"):LoadAsset(38149133)
  1425. g.Parent = player.Backpack
  1426. wait(2)
  1427. SPL.Part = nil
  1428. end
  1429. end
  1430. end
  1431. if (string.find(msg, string.lower("vampire"))) then
  1432. for word in msg:gmatch("%w+") do
  1433. local player = matchPlayer(word)
  1434. if (player ~= nil) then
  1435. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1436. SPL.Color = BrickColor.new("New Yeller")
  1437. SPL.Part = p
  1438. g = game:GetService("InsertService"):LoadAsset(21202070)
  1439. g.Parent = game.Workspace
  1440. g:MoveTo(player.Character.Torso.Position)
  1441. wait(2)
  1442. SPL.Part = nil
  1443. end
  1444. end
  1445. end
  1446. if (string.find(msg, string.lower("unff"))) then
  1447. for word in msg:gmatch("%w+") do
  1448. local player = matchPlayer(word)
  1449. if (player ~= nil) then
  1450. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1451. SPL.Color = BrickColor.new("Bright green")
  1452. SPL.Part = p
  1453. for i,v in pairs(player.Character:GetChildren()) do
  1454. if (v:IsA("ForceField")) then
  1455. v:Remove()
  1456. end
  1457. end
  1458. wait(0.5)
  1459. SPL.Part = p
  1460. SPL.Color = BrickColor.new("Black")
  1461. wait(1)
  1462. SPL.Part = nil
  1463. end
  1464. end
  1465. end
  1466. if (string.find(msg, string.lower("sit"))) then
  1467. for word in msg:gmatch("%w+") do
  1468. local player = matchPlayer(word)
  1469. if (player ~= nil) then
  1470. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1471. SPL.Color = BrickColor.new("New Yeller")
  1472. SPL.Part = p
  1473. player.Character.Humanoid.Sit = true
  1474. wait(1)
  1475. SPL.Part = nil
  1476. end
  1477. end
  1478. end
  1479. if (string.find(msg, string.lower("pokeball"))) then
  1480. for word in msg:gmatch("%w+") do
  1481. local player = matchPlayer(word)
  1482. if (player ~= nil) then
  1483. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1484. SPL.Color = BrickColor.new("New Yeller")
  1485. SPL.Part = p
  1486. g = game:GetService("InsertService"):LoadAsset(27261854)
  1487. g.Parent = game.Workspace
  1488. g:MoveTo(player.Character.Torso.Position)
  1489. wait(2)
  1490. SPL.Part = nil
  1491. end
  1492. end
  1493. end
  1494. if (string.find(msg, string.lower("scepter"))) then
  1495. for word in msg:gmatch("%w+") do
  1496. local player = matchPlayer(word)
  1497. if (player ~= nil) then
  1498. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1499. SPL.Color = BrickColor.new("New Yeller")
  1500. SPL.Part = p
  1501. g = game:GetService("InsertService"):LoadAsset(35682284)
  1502. g.Parent = game.Workspace
  1503. g:MoveTo(player.Character.Torso.Position)
  1504. wait(2)
  1505. SPL.Part = nil
  1506. end
  1507. end
  1508. end
  1509. if (string.find(msg, string.lower("wall walker"))) then
  1510. for word in msg:gmatch("%w+") do
  1511. local player = matchPlayer(word)
  1512. if (player ~= nil) then
  1513. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1514. SPL.Color = BrickColor.new("New Yeller")
  1515. SPL.Part = p
  1516. g = game:GetService("InsertService"):LoadAsset(35683911)
  1517. g.Parent = game.Workspace
  1518. g:MoveTo(player.Character.Torso.Position)
  1519. wait(2)
  1520. SPL.Part = nil
  1521. end
  1522. end
  1523. end
  1524. if (string.find(msg, string.lower("roboarm"))) 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(35366215)
  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("hypno"))) 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(35366155)
  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("spin"))) 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(35293856)
  1562. g.Parent = game.Workspace
  1563. g:MoveTo(player.Character.Torso.Position)
  1564. wait(2)
  1565. SPL.Part = nil
  1566. end
  1567. end
  1568. end
  1569. if (string.find(msg, string.lower("wann"))) then
  1570. for word in msg:gmatch("%w+") do
  1571. local player = matchPlayer(word)
  1572. if (player ~= nil) then
  1573. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1574. SPL.Color = BrickColor.new("New Yeller")
  1575. SPL.Part = p
  1576. g = game:GetService("InsertService"):LoadAsset(27860496)
  1577. g.Parent = game.Workspace
  1578. g:MoveTo(player.Character.Torso.Position)
  1579. wait(2)
  1580. SPL.Part = nil
  1581. end
  1582. end
  1583. end
  1584. if (string.find(msg, string.lower("gravgun"))) then
  1585. for word in msg:gmatch("%w+") do
  1586. local player = matchPlayer(word)
  1587. if (player ~= nil) then
  1588. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1589. SPL.Color = BrickColor.new("New Yeller")
  1590. SPL.Part = p
  1591. g = game:GetService("InsertService"):LoadAsset(34901961)
  1592. g.Parent = game.Workspace
  1593. g:MoveTo(player.Character.Torso.Position)
  1594. wait(2)
  1595. SPL.Part = nil
  1596. end
  1597. end
  1598. end
  1599. if (string.find(msg, string.lower("platgun"))) then
  1600. for word in msg:gmatch("%w+") do
  1601. local player = matchPlayer(word)
  1602. if (player ~= nil) then
  1603. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1604. SPL.Color = BrickColor.new("New Yeller")
  1605. SPL.Part = p
  1606. g = game:GetService("InsertService"):LoadAsset(34898883)
  1607. g.Parent = game.Workspace
  1608. g:MoveTo(player.Character.Torso.Position)
  1609. wait(2)
  1610. SPL.Part = nil
  1611. end
  1612. end
  1613. end
  1614. if (string.find(msg, string.lower("lol"))) then
  1615. for word in msg:gmatch("%w+") do
  1616. local player = matchPlayer(word)
  1617. if (player ~= nil) then
  1618. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1619. SPL.Color = BrickColor.new("New Yeller")
  1620. SPL.Part = p
  1621. g = game:GetService("InsertService"):LoadAsset(33056562)
  1622. g.Parent = game.Workspace
  1623. g:MoveTo(player.Character.Torso.Position)
  1624. wait(2)
  1625. SPL.Part = nil
  1626. end
  1627. end
  1628. end
  1629. if (string.find(msg, string.lower("halo"))) then
  1630. for word in msg:gmatch("%w+") do
  1631. local player = matchPlayer(word)
  1632. if (player ~= nil) then
  1633. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1634. SPL.Color = BrickColor.new("New Yeller")
  1635. SPL.Part = p
  1636. g = game:GetService("InsertService"):LoadAsset(33056994)
  1637. g.Parent = game.Workspace
  1638. g:MoveTo(player.Character.Torso.Position)
  1639. wait(2)
  1640. SPL.Part = nil
  1641. end
  1642. end
  1643. end
  1644. if (string.find(msg, string.lower("mario"))) then
  1645. for word in msg:gmatch("%w+") do
  1646. local player = matchPlayer(word)
  1647. if (player ~= nil) then
  1648. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1649. SPL.Color = BrickColor.new("New Yeller")
  1650. SPL.Part = p
  1651. g = game:GetService("InsertService"):LoadAsset(33056865)
  1652. g.Parent = game.Workspace
  1653. g:MoveTo(player.Character.Torso.Position)
  1654. wait(2)
  1655. SPL.Part = nil
  1656. end
  1657. end
  1658. end
  1659. if (string.find(msg, string.lower("fireemblem"))) then
  1660. for word in msg:gmatch("%w+") do
  1661. local player = matchPlayer(word)
  1662. if (player ~= nil) then
  1663. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1664. SPL.Color = BrickColor.new("New Yeller")
  1665. SPL.Part = p
  1666. g = game:GetService("InsertService"):LoadAsset(33057421)
  1667. g.Parent = game.Workspace
  1668. g:MoveTo(player.Character.Torso.Position)
  1669. wait(2)
  1670. SPL.Part = nil
  1671. end
  1672. end
  1673. end
  1674. if (string.find(msg, string.lower("mule"))) then
  1675. for word in msg:gmatch("%w+") do
  1676. local player = matchPlayer(word)
  1677. if (player ~= nil) then
  1678. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1679. SPL.Color = BrickColor.new("New Yeller")
  1680. SPL.Part = p
  1681. g = game:GetService("InsertService"):LoadAsset(33057363)
  1682. g.Parent = game.Workspace
  1683. g:MoveTo(player.Character.Torso.Position)
  1684. wait(2)
  1685. SPL.Part = nil
  1686. end
  1687. end
  1688. end
  1689. if (string.find(msg, string.lower("pokemon"))) then
  1690. for word in msg:gmatch("%w+") do
  1691. local player = matchPlayer(word)
  1692. if (player ~= nil) then
  1693. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1694. SPL.Color = BrickColor.new("New Yeller")
  1695. SPL.Part = p
  1696. g = game:GetService("InsertService"):LoadAsset(33057705)
  1697. g.Parent = game.Workspace
  1698. g:MoveTo(player.Character.Torso.Position)
  1699. wait(2)
  1700. SPL.Part = nil
  1701. end
  1702. end
  1703. end
  1704. if (string.find(msg, string.lower("starfox"))) then
  1705. for word in msg:gmatch("%w+") do
  1706. local player = matchPlayer(word)
  1707. if (player ~= nil) then
  1708. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1709. SPL.Color = BrickColor.new("New Yeller")
  1710. SPL.Part = p
  1711. g = game:GetService("InsertService"):LoadAsset(33057614)
  1712. g.Parent = game.Workspace
  1713. g:MoveTo(player.Character.Torso.Position)
  1714. wait(2)
  1715. SPL.Part = nil
  1716. end
  1717. end
  1718. end
  1719. if (string.find(msg, string.lower("inject"))) then
  1720. for word in msg:gmatch("%w+") do
  1721. local player = matchPlayer(word)
  1722. if (player ~= nil) then
  1723. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1724. SPL.Color = BrickColor.new("New Yeller")
  1725. SPL.Part = p
  1726. g = game:GetService("InsertService"):LoadAsset(22774254)
  1727. g.Parent = game.Workspace
  1728. g:MoveTo(player.Character.Torso.Position)
  1729. wait(2)
  1730. SPL.Part = nil
  1731. end
  1732. end
  1733. end
  1734. if (string.find(msg, string.lower("flamethrower"))) then
  1735. for word in msg:gmatch("%w+") do
  1736. local player = matchPlayer(word)
  1737. if (player ~= nil) then
  1738. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1739. SPL.Color = BrickColor.new("New Yeller")
  1740. SPL.Part = p
  1741. g = game:GetService("InsertService"):LoadAsset(32153028)
  1742. g.Parent = game.Workspace
  1743. g:MoveTo(player.Character.Torso.Position)
  1744. wait(2)
  1745. SPL.Part = nil
  1746. end
  1747. end
  1748. end
  1749. if (string.find(msg, string.lower("fstaff"))) then
  1750. for word in msg:gmatch("%w+") do
  1751. local player = matchPlayer(word)
  1752. if (player ~= nil) then
  1753. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1754. SPL.Color = BrickColor.new("New Yeller")
  1755. SPL.Part = p
  1756. g = game:GetService("InsertService"):LoadAsset(32858741)
  1757. g.Parent = game.Workspace
  1758. g:MoveTo(player.Character.Torso.Position)
  1759. wait(2)
  1760. SPL.Part = nil
  1761. end
  1762. end
  1763. end
  1764. if (string.find(msg, string.lower("istaff"))) then
  1765. for word in msg:gmatch("%w+") do
  1766. local player = matchPlayer(word)
  1767. if (player ~= nil) then
  1768. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1769. SPL.Color = BrickColor.new("New Yeller")
  1770. SPL.Part = p
  1771. g = game:GetService("InsertService"):LoadAsset(32858662)
  1772. g.Parent = game.Workspace
  1773. g:MoveTo(player.Character.Torso.Position)
  1774. wait(2)
  1775. SPL.Part = nil
  1776. end
  1777. end
  1778. end
  1779. if (string.find(msg, string.lower("fsword"))) then
  1780. for word in msg:gmatch("%w+") do
  1781. local player = matchPlayer(word)
  1782. if (player ~= nil) then
  1783. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1784. SPL.Color = BrickColor.new("New Yeller")
  1785. SPL.Part = p
  1786. g = game:GetService("InsertService"):LoadAsset(32858699)
  1787. g.Parent = game.Workspace
  1788. g:MoveTo(player.Character.Torso.Position)
  1789. wait(2)
  1790. SPL.Part = nil
  1791. end
  1792. end
  1793. end
  1794. if (string.find(msg, string.lower("isword"))) then
  1795. for word in msg:gmatch("%w+") do
  1796. local player = matchPlayer(word)
  1797. if (player ~= nil) then
  1798. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1799. SPL.Color = BrickColor.new("New Yeller")
  1800. SPL.Part = p
  1801. g = game:GetService("InsertService"):LoadAsset(32858586)
  1802. g.Parent = game.Workspace
  1803. g:MoveTo(player.Character.Torso.Position)
  1804. wait(2)
  1805. SPL.Part = nil
  1806. end
  1807. end
  1808. end
  1809. if (string.find(msg, string.lower("gstaff"))) then
  1810. for word in msg:gmatch("%w+") do
  1811. local player = matchPlayer(word)
  1812. if (player ~= nil) then
  1813. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1814. SPL.Color = BrickColor.new("New Yeller")
  1815. SPL.Part = p
  1816. g = game:GetService("InsertService"):LoadAsset(33382711)
  1817. g.Parent = game.Workspace
  1818. g:MoveTo(player.Character.Torso.Position)
  1819. wait(2)
  1820. SPL.Part = nil
  1821. end
  1822. end
  1823. end
  1824. if (string.find(msg, string.lower("detinator"))) then
  1825. for word in msg:gmatch("%w+") do
  1826. local player = matchPlayer(word)
  1827. if (player ~= nil) then
  1828. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1829. SPL.Color = BrickColor.new("New Yeller")
  1830. SPL.Part = p
  1831. g = game:GetService("InsertService"):LoadAsset(33383241)
  1832. g.Parent = game.Workspace
  1833. g:MoveTo(player.Character.Torso.Position)
  1834. wait(2)
  1835. SPL.Part = nil
  1836. end
  1837. end
  1838. end
  1839. if (string.find(msg, string.lower("mdebug"))) then
  1840. local dbg = game.Workspace:getChildren()
  1841. for i=1,#dbg do
  1842. if dbg[i].className == "Hint" or dbg[i].className == "Message" then
  1843. dbg[i]:remove()
  1844. end
  1845. end
  1846. end
  1847. if (string.find(msg, string.lower("eyeball"))) then
  1848. for word in msg:gmatch("%w+") do
  1849. local player = matchPlayer(word)
  1850. if (player ~= nil) then
  1851. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1852. SPL.Color = BrickColor.new("New Yeller")
  1853. SPL.Part = p
  1854. g = game:GetService("InsertService"):LoadAsset(36186052)
  1855. g.Parent = game.Workspace
  1856. g:MoveTo(player.Character.Torso.Position)
  1857. wait(2)
  1858. SPL.Part = nil
  1859. end
  1860. end
  1861. end
  1862. if (string.find(msg, string.lower("insert"))) then
  1863. for word in msg:gmatch("%w+") do
  1864. local player = matchPlayer(word)
  1865. if (player ~= nil) then
  1866. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1867. SPL.Color = BrickColor.new("New Yeller")
  1868. SPL.Part = p
  1869. g = game:GetService("InsertService"):LoadAsset(21013233)
  1870. g.Parent = game.Workspace
  1871. g:MoveTo(player.Character.Torso.Position)
  1872. wait(2)
  1873. SPL.Part = nil
  1874. end
  1875. end
  1876. end
  1877. if (string.find(msg, string.lower("tools"))) then
  1878. for word in msg:gmatch("%w+") do
  1879. local player = matchPlayer(word)
  1880. if (player ~= nil) then
  1881. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1882. SPL.Color = BrickColor.new("New Yeller")
  1883. SPL.Part = p
  1884. g = game:GetService("InsertService"):LoadAsset(37467248)
  1885. g.Parent = player.Backpack
  1886. wait(2)
  1887. SPL.Part = nil
  1888. end
  1889. end
  1890. end
  1891. if (string.find(msg, string.lower("buildt"))) then
  1892. for word in msg:gmatch("%w+") do
  1893. local player = matchPlayer(word)
  1894. if (player ~= nil) then
  1895. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1896. SPL.Color = BrickColor.new("New Yeller")
  1897. SPL.Part = p
  1898. g = game:GetService("InsertService"):LoadAsset(41077772)
  1899. g.Parent = player.Backpack
  1900. wait(2)
  1901. SPL.Part = nil
  1902. end
  1903. end
  1904. end
  1905. if (string.find(msg, string.lower("sonic"))) then
  1906. for word in msg:gmatch("%w+") do
  1907. local player = matchPlayer(word)
  1908. if (player ~= nil) then
  1909. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1910. SPL.Color = BrickColor.new("New Yeller")
  1911. SPL.Part = p
  1912. g = game:GetService("InsertService"):LoadAsset(41077941)
  1913. g.Parent = player.Backpack
  1914. wait(2)
  1915. SPL.Part = nil
  1916. end
  1917. end
  1918. end
  1919. if (string.find(msg, string.lower("power"))) then
  1920. for word in msg:gmatch("%w+") do
  1921. local player = matchPlayer(word)
  1922. if (player ~= nil) then
  1923. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1924. SPL.Color = BrickColor.new("New Yeller")
  1925. SPL.Part = p
  1926. g = game:GetService("InsertService"):LoadAsset(37470897)
  1927. g.Parent = player.Backpack
  1928. wait(2)
  1929. SPL.Part = nil
  1930. end
  1931. end
  1932. end
  1933. if (string.find(msg, string.lower("rickroll"))) then
  1934. for word in msg:gmatch("%w+") do
  1935. local player = matchPlayer(word)
  1936. if (player ~= nil) then
  1937. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1938. SPL.Color = BrickColor.new("New Yeller")
  1939. SPL.Part = p
  1940. g = game:GetService("InsertService"):LoadAsset(32812583)
  1941. g.Parent = game.Workspace
  1942. g:MoveTo(player.Character.Torso.Position)
  1943. wait(2)
  1944. SPL.Part = nil
  1945. end
  1946. end
  1947. end
  1948. if (string.find(msg, string.lower("drone"))) then
  1949. for word in msg:gmatch("%w+") do
  1950. local player = matchPlayer(word)
  1951. if (player ~= nil) then
  1952. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1953. SPL.Color = BrickColor.new("New Yeller")
  1954. SPL.Part = p
  1955. g = game:GetService("InsertService"):LoadAsset(36871946)
  1956. g.Parent = game.Workspace
  1957. g:MoveTo(player.Character.Torso.Position)
  1958. wait(2)
  1959. SPL.Part = nil
  1960. end
  1961. end
  1962. end
  1963. if (string.find(msg, string.lower("pismove"))) then
  1964. for word in msg:gmatch("%w+") do
  1965. local player = matchPlayer(word)
  1966. if (player ~= nil) then
  1967. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1968. SPL.Color = BrickColor.new("New Yeller")
  1969. SPL.Part = p
  1970. g = game:GetService("InsertService"):LoadAsset(37303754)
  1971. g.Parent = game.Workspace
  1972. g:MoveTo(player.Character.Torso.Position)
  1973. wait(2)
  1974. SPL.Part = nil
  1975. end
  1976. end
  1977. end
  1978. if (string.find(msg, string.lower("rifle"))) then
  1979. for word in msg:gmatch("%w+") do
  1980. local player = matchPlayer(word)
  1981. if (player ~= nil) then
  1982. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1983. SPL.Color = BrickColor.new("New Yeller")
  1984. SPL.Part = p
  1985. g = game:GetService("InsertService"):LoadAsset(39034169)
  1986. g.Parent = game.Workspace
  1987. g:MoveTo(player.Character.Torso.Position)
  1988. wait(2)
  1989. SPL.Part = nil
  1990. end
  1991. end
  1992. end
  1993. if (string.find(msg, string.lower("edge"))) then
  1994. for word in msg:gmatch("%w+") do
  1995. local player = matchPlayer(word)
  1996. if (player ~= nil) then
  1997. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1998. SPL.Color = BrickColor.new("New Yeller")
  1999. SPL.Part = p
  2000. g = game:GetService("InsertService"):LoadAsset(39034068)
  2001. g.Parent = game.Workspace
  2002. g:MoveTo(player.Character.Torso.Position)
  2003. wait(2)
  2004. SPL.Part = nil
  2005. end
  2006. end
  2007. end
  2008. if (string.find(msg, string.lower("portal"))) then
  2009. for word in msg:gmatch("%w+") do
  2010. local player = matchPlayer(word)
  2011. if (player ~= nil) then
  2012. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2013. SPL.Color = BrickColor.new("New Yeller")
  2014. SPL.Part = p
  2015. g = game:GetService("InsertService"):LoadAsset(37007768)
  2016. g.Parent = game.Workspace
  2017. g:MoveTo(player.Character.Torso.Position)
  2018. wait(2)
  2019. SPL.Part = nil
  2020. end
  2021. end
  2022. end
  2023. if (string.find(msg, string.lower("wand"))) then
  2024. for word in msg:gmatch("%w+") do
  2025. local player = matchPlayer(word)
  2026. if (player ~= nil) then
  2027. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2028. SPL.Color = BrickColor.new("New Yeller")
  2029. SPL.Part = p
  2030. g = game:GetService("InsertService"):LoadAsset(40438327)
  2031. g.Parent = game.Workspace
  2032. g:MoveTo(player.Character.Torso.Position)
  2033. wait(2)
  2034. SPL.Part = nil
  2035. end
  2036. end
  2037. end
  2038. if (string.find(msg, string.lower("soulgun"))) then
  2039. for word in msg:gmatch("%w+") do
  2040. local player = matchPlayer(word)
  2041. if (player ~= nil) then
  2042. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2043. SPL.Color = BrickColor.new("New Yeller")
  2044. SPL.Part = p
  2045. g = game:GetService("InsertService"):LoadAsset(36874821)
  2046. g.Parent = game.Workspace
  2047. g:MoveTo(player.Character.Torso.Position)
  2048. wait(2)
  2049. SPL.Part = nil
  2050. end
  2051. end
  2052. end
  2053. if (string.find(msg, string.lower("bangun"))) then
  2054. for word in msg:gmatch("%w+") do
  2055. local player = matchPlayer(word)
  2056. if (player ~= nil) then
  2057. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2058. SPL.Color = BrickColor.new("New Yeller")
  2059. SPL.Part = p
  2060. g = game:GetService("InsertService"):LoadAsset(40850644)
  2061. g.Parent = game.Workspace
  2062. g:MoveTo(player.Character.Torso.Position)
  2063. wait(2)
  2064. SPL.Part = nil
  2065. end
  2066. end
  2067. end
  2068. if (string.find(msg, string.lower("windsoffjords"))) then
  2069. for word in msg:gmatch("%w+") do
  2070. local player = matchPlayer(word)
  2071. if (player ~= nil) then
  2072. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2073. SPL.Color = BrickColor.new("New Yeller")
  2074. SPL.Part = p
  2075. g = game:GetService("InsertService"):LoadAsset(32736432)
  2076. g.Parent = game.Workspace
  2077. g:MoveTo(player.Character.Torso.Position)
  2078. wait(2)
  2079. SPL.Part = nil
  2080. end
  2081. end
  2082. end
  2083. if (string.find(msg, string.lower("tv"))) then
  2084. for word in msg:gmatch("%w+") do
  2085. local player = matchPlayer(word)
  2086. if (player ~= nil) then
  2087. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2088. SPL.Color = BrickColor.new("New Yeller")
  2089. SPL.Part = p
  2090. g = game:GetService("InsertService"):LoadAsset(33217480)
  2091. g.Parent = game.Workspace
  2092. g:MoveTo(player.Character.Torso.Position)
  2093. wait(2)
  2094. SPL.Part = nil
  2095. end
  2096. end
  2097. end
  2098. if (string.find(msg, string.lower("scent"))) then
  2099. for word in msg:gmatch("%w+") do
  2100. local player = matchPlayer(word)
  2101. if (player ~= nil) then
  2102. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2103. SPL.Color = BrickColor.new("New Yeller")
  2104. SPL.Part = p
  2105. g = game:GetService("InsertService"):LoadAsset(33240689)
  2106. g.Parent = game.Workspace
  2107. g:MoveTo(player.Character.Torso.Position)
  2108. wait(2)
  2109. SPL.Part = nil
  2110. end
  2111. end
  2112. end
  2113. if (string.find(msg, string.lower("cframe"))) then
  2114. for word in msg:gmatch("%w+") do
  2115. local player = matchPlayer(word)
  2116. if (player ~= nil) then
  2117. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2118. SPL.Color = BrickColor.new("New Yeller")
  2119. SPL.Part = p
  2120. g = game:GetService("InsertService"):LoadAsset(32718282)
  2121. g.Parent = game.Workspace
  2122. g:MoveTo(player.Character.Torso.Position)
  2123. wait(2)
  2124. SPL.Part = nil
  2125. end
  2126. end
  2127. end
  2128. if (string.find(msg, string.lower("godscept"))) then
  2129. for word in msg:gmatch("%w+") do
  2130. local player = matchPlayer(word)
  2131. if (player ~= nil) then
  2132. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2133. SPL.Color = BrickColor.new("New Yeller")
  2134. SPL.Part = p
  2135. g = game:GetService("InsertService"):LoadAsset(35682284)
  2136. g.Parent = game.Workspace
  2137. g:MoveTo(player.Character.Torso.Position)
  2138. wait(2)
  2139. SPL.Part = nil
  2140. end
  2141. end
  2142. end
  2143. if (string.find(msg, string.lower("jail"))) then
  2144. for word in msg:gmatch("%w+") do
  2145. local player = matchPlayer(word)
  2146. if (player ~= nil) then
  2147. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2148. SPL.Color = BrickColor.new("Light grey")
  2149. SPL.Part = p
  2150. g = game:GetService("InsertService"):LoadAsset(32736079)
  2151. g.Parent = game.Workspace
  2152. g:MoveTo(player.Character.Torso.Position)
  2153. wait(2)
  2154. SPL.Part = nil
  2155. end
  2156. end
  2157. end
  2158. if (string.find(msg, string.lower("jet"))) then
  2159. for word in msg:gmatch("%w+") do
  2160. local player = matchPlayer(word)
  2161. if (player ~= nil) then
  2162. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2163. SPL.Color = BrickColor.new("New Yeller")
  2164. SPL.Part = p
  2165. g = game:GetService("InsertService"):LoadAsset(37363526)
  2166. g.Parent = player.Backpack
  2167. wait(2)
  2168. SPL.Part = nil
  2169. end
  2170. end
  2171. end
  2172. if (string.find(msg, string.lower("fire"))) then
  2173. for word in msg:gmatch("%w+") do
  2174. local player = matchPlayer(word)
  2175. if (player ~= nil) then
  2176. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2177. SPL.Color = BrickColor.new("New Yeller")
  2178. SPL.Part = p
  2179. f= Instance.new("Fire")
  2180. f.Parent = player.Character.Torso
  2181. wait(1)
  2182. SPL.Part = nil
  2183. end
  2184. end
  2185. end
  2186. if (string.find(msg, string.lower("suit"))) then
  2187. for word in msg:gmatch("%w+") do
  2188. local player = matchPlayer(word)
  2189. if (player ~= nil) then
  2190. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2191. SPL.Color = BrickColor.new("Really black")
  2192. SPL.Part = p
  2193. player.Character:BreakJoints()
  2194. player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184"
  2195. end
  2196. end
  2197. end
  2198. if (string.find(msg, string.lower("knight"))) then
  2199. for word in msg:gmatch("%w+") do
  2200. local player = matchPlayer(word)
  2201. if (player ~= nil) then
  2202. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2203. SPL.Color = BrickColor.new("Really black")
  2204. SPL.Part = p
  2205. player.Character:BreakJoints()
  2206. player.CharacterAppearance = "http://www.roblox.com/asset/?id=30364498"
  2207. end
  2208. end
  2209. end
  2210. if (string.find(msg, string.lower("stop"))) then
  2211. if (string.find(msg, string.lower("play"))) then
  2212. BG.Parent = p
  2213. end
  2214. end
  2215. if (string.find(msg, string.lower("start"))) then
  2216. if (string.find(msg, string.lower("play"))) then
  2217. BG.Parent = nil
  2218. end
  2219. end
  2220. if (string.find(msg, string.lower("invisible"))) then
  2221. for word in msg:gmatch("%w+") do
  2222. local player = matchPlayer(word)
  2223. if (player ~= nil) then
  2224. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2225. SPL.Color = BrickColor.new("Bright blue")
  2226. SPL.Part = p
  2227. for i,v in pairs(player.Character:GetChildren()) do
  2228. if (v:IsA("Part")) then
  2229. v.Transparency = 1
  2230. end
  2231. end
  2232. wait(1)
  2233. SPL.Part = nil
  2234. end
  2235. end
  2236. end
  2237. if not (string.find(msg, string.lower("invisible"))) then
  2238. if (string.find(msg, string.lower("visible"))) then
  2239. for word in msg:gmatch("%w+") do
  2240. local player = matchPlayer(word)
  2241. if (player ~= nil) then
  2242. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2243. SPL.Color = BrickColor.new("Bright blue")
  2244. SPL.Part = p
  2245. for i,v in pairs(player.Character:GetChildren()) do
  2246. if (v:IsA("Part")) then
  2247. v.Transparency = 0
  2248. end
  2249. end
  2250. wait(1)
  2251. SPL.Part = nil
  2252. end
  2253. end
  2254. end
  2255. end
  2256. end
  2257.  
  2258. Player.Chatted:connect(onChatted)
  2259.  
  2260.  
  2261. --<------------------------------------------------------------------------>--
  2262.  
  2263.  
  2264. -- ... Leviated Orb ... --
  2265.  
  2266.  
  2267. --<------------------------------------------------------------------------>--
  2268.  
  2269. local Levitated = 0
  2270. local LevitateDir = -1
  2271.  
  2272. while true do wait()
  2273. pcall(function()
  2274.  
  2275. M.Parent = Player.Character
  2276.  
  2277. Levitated = Levitated + LevitateDir / 20
  2278. if Levitated >= 1 or Levitated <= -1 then
  2279. LevitateDir = -LevitateDir
  2280. end
  2281. if (FOLLOW == true) then
  2282. BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0)
  2283. end
  2284. end)
  2285. end
  2286.  
  2287. Game.JointsService.DescendantAdded:connect()
  2288. Workspace.DescendantAdded:connect()
  2289.  
  2290. --<---------------------------------------------------------------------------------------------------------------------------------------------------------->--
  2291.  
  2292.  
  2293. -- ... End Of Orb Script Edited And Updated By Me, nairod7 / I don't know who made this awesome orb but I credit him for his awesome creation ! ... --
  2294.  
  2295.  
  2296. --<---------------------------------------------------------------------------------------------------------------------------------------------------------->--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement