Advertisement
iiHackerii

Untitled

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