Advertisement
Coryh

Untitled

Dec 6th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 98.12 KB | None | 0 0
  1. ----->>>>>----->>>>>--[[ : Nairod's Orb V11 : ]]--<<<<<-----<<<<<-----
  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 ... --
  32.  
  33.  
  34. --<------------------------------------------------------------------------>--
  35.  
  36.  
  37. Owners = "corymegatron"
  38. Player = game.Players:findFirstChild(Owners)
  39.  
  40.  
  41.  
  42. --<------------------------------------------------------------------------>--
  43.  
  44.  
  45. -- ... Part Of Orb ... --
  46.  
  47.  
  48. --<------------------------------------------------------------------------>--
  49.  
  50.  
  51. if Player.Character:findFirstChild(script.Name.."'s Orb !") then
  52. Player.Character[script.Name.."'s Orb !"]:remove()
  53. end
  54. local RISE = 5
  55. local FOLLOW = true
  56. local M = Instance.new("Model")
  57. local H = Instance.new("Humanoid")
  58. M.Parent = Player.Character
  59. H.Parent = M
  60. H.MaxHealth = 0
  61. H.Health = 0
  62. M.Name = script.Name.."'s Orb !"
  63. local p = Instance.new("Part")
  64. local BP = Instance.new("BodyPosition")
  65. local BG = Instance.new("BodyGyro")
  66. local SPL = Instance.new("SelectionPartLasso")
  67. BP.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  68. SPL.Parent = p
  69. p.BrickColor = BrickColor.new("White")
  70. f=Instance.new("Fire")
  71. f.Name = "RedFire"
  72. f.Parent=p
  73. f.Heat = 3
  74. f.Size = 2
  75. f.Color=Color3.new(255,0,0)
  76. f.SecondaryColor = Color3.new(0,0,0)
  77. f=Instance.new("Fire")
  78. f.Name = "GreenFire"
  79. f.Parent=p
  80. f.Heat = 3
  81. f.Size = 2
  82. f.Color=Color3.new(0,255,0)
  83. f.SecondaryColor = Color3.new(0,0,0)
  84. f=Instance.new("Fire")
  85. f.Name = "BlueFire"
  86. f.Parent=p
  87. f.Heat = 3
  88. f.Size = 2
  89. f.Color=Color3.new(0,0,255)
  90. f.SecondaryColor = Color3.new(0,0,0)
  91. f=Instance.new("SpecialMesh")
  92. f.Parent=p
  93. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  94. f.MeshType = "FileMesh"
  95. f.Scale = Vector3.new(1,1,1)
  96. f.TextureId = "http://www.roblox.com/asset/?id=34914385"
  97. p.Name = "Head"
  98. p.Parent = M
  99. p.Shape = "Ball"
  100. p.formFactor = "Symmetric"
  101. p.Size = Vector3.new(1, 1, 1)
  102. p.TopSurface = 0
  103. p.Locked = true
  104. BP.Parent = p
  105.  
  106. function matchPlayer(str)
  107. local result = nil
  108. local players = game.Players:GetPlayers()
  109. for i,v in pairs(game.Players:GetPlayers()) do
  110. if (string.find(string.lower(v.Name), str) == 1) then
  111. if (result ~= nil) then return nil end
  112. result = v
  113. end
  114. end
  115. return result
  116. end
  117.  
  118. function onChatted(msg)
  119.  
  120.  
  121. --<------------------------------------------------------------------------>--
  122.  
  123.  
  124. -- ... Commands To Modify Your Orb ... --
  125.  
  126.  
  127. --<------------------------------------------------------------------------>--
  128.  
  129. if (string.find(msg, string.lower("trans:"))) then
  130. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  131. if (number ~= nil) then
  132. p.Transparency = tonumber(number)
  133. end
  134. end
  135. if (string.find(msg, string.lower("ref:"))) then
  136. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  137. if (number ~= nil) then
  138. p.Reflectance = tonumber(number)
  139. end
  140. end
  141. if (string.find(msg, string.lower("fire:"))) then
  142. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  143. if (number ~= nil) then
  144. p.RedFire.size = tonumber(number)
  145. p.GreenFire.size = tonumber(number)
  146. p.BlueFire.size = tonumber(number)
  147. end
  148. end
  149. if (string.find(msg, string.lower("size:"))) then
  150. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  151. if (number ~= nil) then
  152. f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  153. p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  154. end
  155. end
  156. if (string.find(msg, string.lower("scale:"))) 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. end
  161. end
  162. if (string.find(msg, string.lower("loopkill:"))) then
  163. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  164. if (number ~= nil) then
  165. for word in msg:gmatch("%w+") do
  166. local player = matchPlayer(word)
  167. if (player ~= nil) then
  168. K = 0
  169. repeat
  170. if (player.Character:findFirstChild("Humanoid").Health > 0) then
  171. wait()
  172. if (player.Character:findFirstChild("Torso") ~= nil) then
  173. wait()
  174. if (player.Character ~= nil) then
  175. wait()
  176. K = K + 1
  177. player.Character:BreakJoints()
  178. end
  179. end
  180. end
  181. wait()
  182. until tonumber(K) == tonumber(number)
  183. K = 0
  184. end
  185. end
  186. end
  187. end
  188. if (string.find(msg, string.lower("rise:"))) then
  189. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  190. if (number ~= nil) then
  191. RISE = tostring(number + 5)
  192. end
  193. end
  194. if (string.find(msg, string.lower("stay:"))) then
  195. p.Anchored = true
  196. end
  197. if (string.find(msg, string.lower("follow:"))) then
  198. p.Anchored = false
  199. end
  200. if (string.find(msg, string.lower("on:sp"))) then
  201. sp=Instance.new("Sparkles")
  202. sp.Parent=p
  203. end
  204. if (string.find(msg, string.lower("off:sp"))) then
  205. sp:remove()
  206. end
  207. if (string.find(msg, string.lower("on:ff"))) then
  208. ff=Instance.new("ForceField")
  209. ff.Parent=p
  210. end
  211. if (string.find(msg, string.lower("off:ff"))) then
  212. ff:remove()
  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:remove()
  220. end
  221. if (string.find(msg, string.lower("purple:mesh"))) then
  222. M.Name = script.Name.."'s Orb !"
  223. f.Parent = p
  224. f.TextureId="http://www.roblox.com/asset/?id=37329295"
  225. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  226. end
  227. if (string.find(msg, string.lower("red:mesh"))) then
  228. M.Name = script.Name.."'s Orb !"
  229. f.Parent = p
  230. f.TextureId="http://www.roblox.com/asset/?id=34914385"
  231. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  232. end
  233. if (string.find(msg, string.lower("blue:mesh"))) then
  234. M.Name = script.Name.."'s Orb !"
  235. f.Parent = p
  236. f.TextureId="http://www.roblox.com/asset/?id=34795697"
  237. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  238. end
  239. if (string.find(msg, string.lower("yellow:mesh"))) then
  240. M.Name = script.Name.."'s Orb !"
  241. f.Parent = p
  242. f.TextureId="http://www.roblox.com/asset/?id=38034696"
  243. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  244. end
  245. if (string.find(msg, string.lower("green:mesh"))) then
  246. M.Name = script.Name.."'s Orb !"
  247. f.Parent = p
  248. f.TextureId="http://www.roblox.com/asset/?id=38033519"
  249. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  250. end
  251. if (string.find(msg, string.lower("pink:mesh"))) then
  252. M.Name = script.Name.."'s Orb !"
  253. f.Parent = p
  254. f.TextureId="http://www.roblox.com/asset/?id=25980285"
  255. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  256. end
  257. if (string.find(msg, string.lower("orange:mesh"))) then
  258. M.Name = script.Name.."'s Orb !"
  259. f.Parent = p
  260. f.TextureId="http://www.roblox.com/asset/?id=16774634"
  261. f.MeshId = "3a00f203befb97639d32b9932b18bb23"
  262. end
  263. if (string.find(msg, string.lower("atom:mesh"))) then
  264. M.Name = script.Name.."'s Atom Orb !"
  265. f.Parent = p
  266. f.TextureId="http://www.roblox.com/asset/?id=10913771"
  267. f.MeshId = "http://www.roblox.com/asset/?id=10913794"
  268. end
  269. if (string.find(msg, string.lower("fish:mesh"))) then
  270. M.Name = script.Name.."'s Fish Orb !"
  271. f.Parent = p
  272. f.TextureId="http://www.roblox.com/asset/?id=31574190"
  273. f.MeshId = "http://www.roblox.com/asset/?id=31221717"
  274. end
  275. if (string.find(msg, string.lower("spellbook:mesh"))) then
  276. M.Name = script.Name.."'s Spell Book Orb !"
  277. f.Parent = p
  278. f.TextureId="fb0b0800411509923ef4d41a46888323"
  279. f.MeshId = "http://www.roblox.com/asset/?id=1136139"
  280. end
  281. if (string.find(msg, string.lower("magic:mesh"))) then
  282. M.Name = script.Name.."'s Magic Orb !"
  283. f.Parent = p
  284. f.TextureId="http://www.roblox.com/asset/?id=29358683"
  285. f.MeshId = "0fa80faaf310b3d17887bb00f1bc3517"
  286. end
  287. if (string.find(msg, string.lower("rail:mesh"))) then
  288. M.Name = script.Name.."'s Rail Orb !"
  289. f.Parent = p
  290. f.TextureId=""
  291. f.MeshId = "11f686db41a12e23bc492c67cad64308"
  292. end
  293. if (string.find(msg, string.lower("eyportal:mesh"))) then
  294. M.Name = script.Name.."'s EyePortal Orb !"
  295. f.Parent = p
  296. f.TextureId="http://www.roblox.com/asset/?id=19106633"
  297. f.MeshId = "http://www.roblox.com/asset/?id=19106648"
  298. end
  299. if (string.find(msg, string.lower("eye:mesh"))) then
  300. M.Name = script.Name.."'s Eyeball Orb !"
  301. f.Parent = p
  302. f.TextureId="http://www.roblox.com/asset/?id=5013397"
  303. f.MeshId = "http://www.roblox.com/asset/?id=1185246"
  304. end
  305. if (string.find(msg, string.lower("scorpion:mesh"))) then
  306. M.Name = script.Name.."'s Scorpion Orb !"
  307. f.Parent = p
  308. f.TextureId="http://www.roblox.com/asset/?id=15405707"
  309. f.MeshId = "http://www.roblox.com/asset/?id=15158219"
  310. end
  311. if (string.find(msg, string.lower("plane:mesh"))) then
  312. M.Name = script.Name.."'s Plane Orb !"
  313. f.Parent = p
  314. f.TextureId="http://www.roblox.com/asset/?id=11904404"
  315. f.MeshId = "ada8493b74fd55bebc11d72ffa35800d"
  316. end
  317. if (string.find(msg, string.lower("chaos:mesh"))) then
  318. M.Name = script.Name.."'s Chaos Orb !"
  319. f.Parent = p
  320. f.TextureId="http://www.roblox.com/asset/?id=10348768"
  321. f.MeshId = "2567ca845304ded49542bd77c0b324d2"
  322. end
  323. if (string.find(msg, string.lower("dragon:mesh"))) then
  324. M.Name = script.Name.."'s Dragon Orb !"
  325. f.Parent = p
  326. f.TextureId="http://www.roblox.com/asset/?id=2031969"
  327. f.MeshId = "ffbff6fa7aae92d9b6c316fe10aa71ae"
  328. f.Scale = Vector3.new(0.1,0.1,0.1)
  329. end
  330. if (string.find(msg, string.lower("duck:mesh"))) then
  331. M.Name = script.Name.."'s Duck Orb !"
  332. f.Parent = p
  333. f.TextureId="http://www.roblox.com/asset/?id=9419827"
  334. f.MeshId = "http://www.roblox.com/asset/?id=9419831"
  335. end
  336. if (string.find(msg, string.lower("basket:mesh"))) then
  337. M.Name = script.Name.."'s Basket Orb !"
  338. f.Parent = p
  339. f.TextureId="http://www.roblox.com/asset/?id=24710338"
  340. f.MeshId = "http://www.roblox.com/asset/?id=24710365"
  341. end
  342. if (string.find(msg, string.lower("broom:mesh"))) then
  343. M.Name = script.Name.."'s Broom Orb !"
  344. f.Parent = p
  345. f.TextureId="http://www.roblox.com/asset/?id=36365793"
  346. f.MeshId = "http://www.roblox.com/asset/?id=36365830"
  347. end
  348. if (string.find(msg, string.lower("card:mesh"))) then
  349. M.Name = script.Name.."'s Card Orb !"
  350. f.Parent = p
  351. f.TextureId="http://www.roblox.com/asset/?id=35577189"
  352. f.MeshId = "http://www.roblox.com/asset/?id= 35577280"
  353. end
  354. if (string.find(msg, string.lower("chibi:mesh"))) then
  355. M.Name = script.Name.."'s Chibi Orb !"
  356. f.Parent = p
  357. f.TextureId="http://www.roblox.com/asset/?id=14858805"
  358. f.MeshId = "http://www.roblox.com/asset/?id=14858784"
  359. end
  360. if (string.find(msg, string.lower("ds:mesh"))) then
  361. M.Name = script.Name.."'s DS Orb !"
  362. f.Parent = p
  363. f.TextureId="http://www.roblox.com/asset/?id=33680946"
  364. f.MeshId = "http://www.roblox.com/asset/?id=33680919"
  365. end
  366. if (string.find(msg, string.lower("egg:mesh"))) then
  367. M.Name = script.Name.."'s Egg Orb !"
  368. f.Parent = p
  369. f.TextureId=""
  370. f.MeshId = "http://www.roblox.com/asset/?id=1527559"
  371. end
  372. if (string.find(msg, string.lower("football:mesh"))) then
  373. M.Name = script.Name.."'s Football Orb !"
  374. f.Parent = p
  375. f.TextureId="http://www.roblox.com/asset/?id=28502119"
  376. f.MeshId = "http://www.roblox.com/asset/?id=28502053"
  377. end
  378. if (string.find(msg, string.lower("hallow:mesh"))) then
  379. M.Name = script.Name.."'s Hallow Orb !"
  380. f.Parent = p
  381. f.TextureId="http://www.roblox.com/asset/?id=37726216"
  382. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  383. end
  384. if (string.find(msg, string.lower("hand:mesh"))) then
  385. M.Name = script.Name.."'s Hand Orb !"
  386. f.Parent = p
  387. f.TextureId="http://www.roblox.com/asset/?id=37241842"
  388. f.MeshId = "http://www.roblox.com/asset/?id=37241605"
  389. end
  390. if (string.find(msg, string.lower("harbringer:mesh"))) then
  391. M.Name = script.Name.."'s Harbringer Orb !"
  392. f.Parent = p
  393. f.TextureId="http://www.roblox.com/asset/?id=15720019"
  394. f.MeshId = "http://www.roblox.com/asset/?id=15720024"
  395. end
  396. if (string.find(msg, string.lower("lua:mesh"))) then
  397. M.Name = script.Name.."'s Lua Orb !"
  398. f.Parent = p
  399. f.TextureId="http://www.roblox.com/asset/?id=8568533"
  400. f.MeshId = "http://www.roblox.com/asset/?id=1136139"
  401. end
  402. if (string.find(msg, string.lower("mummy:mesh"))) then
  403. M.Name = script.Name.."'s Mummy Orb !"
  404. f.Parent = p
  405. f.TextureId="http://www.roblox.com/asset/?id=14393615"
  406. f.MeshId = "http://www.roblox.com/asset/?id=14393650"
  407. end
  408. if (string.find(msg, string.lower("note:mesh"))) then
  409. M.Name = script.Name.."'s Note Orb !"
  410. f.Parent = p
  411. f.TextureId="http://www.roblox.com/asset/?id=1088099"
  412. f.MeshId = "http://www.roblox.com/asset/?id=1088207"
  413. end
  414. if (string.find(msg, string.lower("pinata:mesh"))) then
  415. M.Name = script.Name.."'s Pinata Orb !"
  416. f.Parent = p
  417. f.TextureId="http://www.roblox.com/asset/?id=34220408"
  418. f.MeshId = "http://www.roblox.com/asset/?id=34220149"
  419. end
  420. if (string.find(msg, string.lower("potion:mesh"))) then
  421. M.Name = script.Name.."'s Potion Orb !"
  422. f.Parent = p
  423. f.TextureId="http://www.roblox.com/asset/?id=27808058"
  424. f.MeshId = "http://www.roblox.com/asset/?id=27808002"
  425. end
  426. if (string.find(msg, string.lower("skull:mesh"))) then
  427. M.Name = script.Name.."'s Skull Orb !"
  428. f.Parent = p
  429. f.TextureId="http://www.roblox.com/asset/?id=31157084"
  430. f.MeshId = "http://www.roblox.com/asset/?id=31157072"
  431. end
  432. if (string.find(msg, string.lower("snow:mesh"))) then
  433. M.Name = script.Name.."'s Snow Orb !"
  434. f.Parent = p
  435. f.TextureId="http://www.roblox.com/asset/?id=5818846"
  436. f.MeshId = "http://www.roblox.com/asset/?id=5818840"
  437. end
  438. if (string.find(msg, string.lower("wizard:mesh"))) then
  439. M.Name = script.Name.."'s Wizard Orb !"
  440. f.Parent = p
  441. f.TextureId="http://www.roblox.com/asset/?id=38161813"
  442. f.MeshId = "http://www.roblox.com/asset/?id=38161033"
  443. end
  444. if (string.find(msg, string.lower("wolven:mesh"))) then
  445. M.Name = script.Name.."'s Wolven Orb !"
  446. f.Parent = p
  447. f.TextureId="http://www.roblox.com/asset/?id=21057516"
  448. f.MeshId = "http://www.roblox.com/asset/?id=21057543"
  449. end
  450. if (string.find(msg, string.lower("cam:mesh"))) then
  451. M.Name = script.Name.."'s Camera Orb !"
  452. f.Parent = p
  453. f.TextureId="http://www.roblox.com/asset/?id=2093097"
  454. f.MeshId = "http://www.roblox.com/asset/?id=2093105"
  455. end
  456. if (string.find(msg, string.lower("rock:mesh"))) then
  457. M.Name = script.Name.."'s Rock Orb !"
  458. f.Parent = p
  459. f.TextureId="http://www.roblox.com/asset/?id=1290030"
  460. f.MeshId = "http://www.roblox.com/asset/?id=1290033"
  461. end
  462. if (string.find(msg, string.lower("earth:mesh"))) then
  463. M.Name = script.Name.."'s Earth Orb !"
  464. f.Parent = p
  465. f.TextureId="http://www.roblox.com/asset/?id=10061209"
  466. f.MeshId = "http://www.roblox.com/asset/?id=10061232"
  467. end
  468. if (string.find(msg, string.lower("hamburger:mesh"))) then
  469. M.Name = script.Name.."'s Hamburger Orb !"
  470. f.Parent = p
  471. f.TextureId="http://www.roblox.com/asset/?id=16432575"
  472. f.MeshId = "http://www.roblox.com/asset/?id=16646125"
  473. end
  474. if (string.find(msg, string.lower("bird:mesh"))) then
  475. M.Name = script.Name.."'s Bird Orb !"
  476. f.Parent = p
  477. f.TextureId="http://wwww.roblox.com/asset/?id=19047274"
  478. f.MeshId = "5f87c3925d29eed5f00a96fc3861bb12"
  479. f.Scale = Vector3.new(0.1,0.1,0.1)
  480. end
  481. if (string.find(msg, string.lower("bat:mesh"))) then
  482. M.Name = script.Name.."'s Bat Orb !"
  483. f.Parent = p
  484. f.TextureId="http://www.roblox.com/asset/?id=37223767"
  485. f.MeshId = "http://www.roblox.com/asset/?id=37223772"
  486. end
  487. if (string.find(msg, string.lower("pumpkin:mesh"))) then
  488. M.Name = script.Name.."'s Pumpkin Orb !"
  489. f.Parent = p
  490. f.TextureId="http://www.roblox.com/asset/?id=1158033"
  491. f.MeshId = "http://www.roblox.com/asset/?id=1158007"
  492. end
  493. if (string.find(msg, string.lower("dominus:mesh"))) then
  494. M.Name = script.Name.."'s Dominus Orb !"
  495. f.Parent = p
  496. f.TextureId="http://www.roblox.com/asset/?id=31100020"
  497. f.MeshId = "http://www.roblox.com/asset/?id=21057410"
  498. end
  499. if (string.find(msg, string.lower("cube:mesh"))) then
  500. M.Name = script.Name.."'s Cube !"
  501. f.Parent = p
  502. f.Scale = Vector3.new(0.2,0.2,0.2)
  503. f.TextureId="http://www.roblox.com/asset/?id=8722621"
  504. f.MeshId = "7787be30ae7f81dca9bf01082f509fbb"
  505. end
  506. if (string.find(msg, string.lower("star:mesh"))) then
  507. M.Name = script.Name.."'s Star !"
  508. f.Parent = p
  509. f.Scale = Vector3.new(0.2,0.2,0.2)
  510. f.TextureId=""
  511. f.MeshId = "8458a59ceb509b0d341889d45302a2f2"
  512. p.BrickColor = BrickColor.new("Bright yellow")
  513. end
  514. if (string.find(msg, string.lower("disco:mesh"))) then
  515. M.Name = script.Name.."'s Disco Ball !"
  516. f.Parent = p
  517. p.Reflectance = 1
  518. f.Scale = Vector3.new(0.2,0.2,0.2)
  519. f.TextureId = ""
  520. f.MeshId = "02a2c4a4b52aa2ca8290f63dcf4cc424"
  521. end
  522. if (string.find(msg, string.lower("no:mesh"))) then
  523. M.Name = script.Name.."'s Orb !"
  524. f.Parent = M
  525. end
  526. if (string.find(msg, string.lower("brick:part"))) then
  527. p.Shape = "Block"
  528. f.TextureId=""
  529. f.MeshId = ""
  530. end
  531. if (string.find(msg, string.lower("ball:part"))) then
  532. p.Shape = "Ball"
  533. f.TextureId=""
  534. f.MeshId = ""
  535. end
  536. if (string.find(msg, string.lower("head:part"))) then
  537. f.TextureId=""
  538. f.MeshId = ""
  539. f.MeshType = "Head"
  540. end
  541. if (string.find(msg, string.lower("blue:color"))) then
  542. p.BrickColor = BrickColor.new("Deep blue")
  543. end
  544. if (string.find(msg, string.lower("dark blue:color"))) then
  545. p.BrickColor = BrickColor.new("Navy blue")
  546. end
  547. if (string.find(msg, string.lower("light blue:color"))) then
  548. p.BrickColor = BrickColor.new("Teal")
  549. end
  550. if (string.find(msg, string.lower("red:color"))) then
  551. p.BrickColor = BrickColor.new("Bright red")
  552. end
  553. if (string.find(msg, string.lower("light red:color"))) then
  554. p.BrickColor = BrickColor.new("Really red")
  555. end
  556. if (string.find(msg, string.lower("green:color"))) then
  557. p.BrickColor = BrickColor.new("Camo")
  558. end
  559. if (string.find(msg, string.lower("dark green:color"))) then
  560. p.BrickColor = BrickColor.new("Earth green")
  561. end
  562. if (string.find(msg, string.lower("light green:color"))) then
  563. p.BrickColor = BrickColor.new("Lime green")
  564. end
  565. if (string.find(msg, string.lower("yellow:color"))) then
  566. p.BrickColor = BrickColor.new("Bright yellow")
  567. end
  568. if (string.find(msg, string.lower("light yellow:color"))) then
  569. p.BrickColor = BrickColor.new("New Yeller")
  570. end
  571. if (string.find(msg, string.lower("orange:color"))) then
  572. p.BrickColor = BrickColor.new("Neon orange")
  573. end
  574. if (string.find(msg, string.lower("purple:color"))) then
  575. p.BrickColor = BrickColor.new("Bright violet")
  576. end
  577. if (string.find(msg, string.lower("magenta:color"))) then
  578. p.BrickColor = BrickColor.new("Magenta")
  579. end
  580. if (string.find(msg, string.lower("brown:color"))) then
  581. p.BrickColor = BrickColor.new("CGA brown")
  582. end
  583. if (string.find(msg, string.lower("dark brown:color"))) then
  584. p.BrickColor = BrickColor.new("Reddish brown")
  585. end
  586. if (string.find(msg, string.lower("light brown:color"))) then
  587. p.BrickColor = BrickColor.new("Nougat")
  588. end
  589. if (string.find(msg, string.lower("white:color"))) then
  590. p.BrickColor = BrickColor.new("White")
  591. end
  592. if (string.find(msg, string.lower("black:color"))) then
  593. p.BrickColor = BrickColor.new("Black")
  594. end
  595. if (string.find(msg, string.lower("plastic:material"))) then
  596. p.Material = "Plastic"
  597. end
  598. if (string.find(msg, string.lower("wood:material"))) then
  599. p.Material = "Wood"
  600. end
  601. if (string.find(msg, string.lower("slate:material"))) then
  602. p.Material = "Slate"
  603. end
  604. if (string.find(msg, string.lower("concrete:material"))) then
  605. p.Material = "Concrete"
  606. end
  607. if (string.find(msg, string.lower("metal:material"))) then
  608. p.Material = "CorrodedMetal"
  609. end
  610. if (string.find(msg, string.lower("dplate:material"))) then
  611. p.Material = "DiamondPlate"
  612. end
  613. if (string.find(msg, string.lower("foil:material"))) then
  614. p.Material = "Foil"
  615. end
  616. if (string.find(msg, string.lower("grass:material"))) then
  617. p.Material = "Grass"
  618. end
  619. if (string.find(msg, string.lower("ice:material"))) then
  620. p.Material = "Ice"
  621. end
  622. if (string.find(msg, string.lower("mdebug:"))) then
  623. local dbg = game.Workspace:getChildren()
  624. for i=1,#dbg do
  625. if dbg[i].className == "Hint" or dbg[i].className == "Message" then
  626. dbg[i]:remove()
  627. end
  628. end
  629. end
  630. if (string.find(msg, string.lower("fix:"))) then
  631. p:remove()
  632. wait(0.1)
  633. script:remove() ----->>>>> that don't remove the script because it is unremovable, just reset it. <<<<<-----
  634. end
  635.  
  636.  
  637.  
  638. --<------------------------------------------------------------------------>--
  639.  
  640.  
  641. -- ... Apparences Commands ... --
  642.  
  643.  
  644. --<------------------------------------------------------------------------>--
  645.  
  646.  
  647.  
  648. if (string.find(msg, string.lower("wierdo:"))) then
  649. for word in msg:gmatch("%w+") do
  650. local player = matchPlayer(word)
  651. if (player ~= nil) then
  652. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  653. SPL.Color = BrickColor.new("Really black")
  654. SPL.Part = p
  655. player.Character:BreakJoints()
  656. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846"
  657. end
  658. end
  659. end
  660. if (string.find(msg, string.lower("chowder:"))) then
  661. for word in msg:gmatch("%w+") do
  662. local player = matchPlayer(word)
  663. if (player ~= nil) then
  664. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  665. SPL.Color = BrickColor.new("New Yeller")
  666. SPL.Part = p
  667. player.Character:BreakJoints()
  668. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1783645"
  669. SPL.Part = nil
  670. end
  671. end
  672. end
  673. if (string.find(msg, string.lower("striper:"))) then
  674. for word in msg:gmatch("%w+") do
  675. local player = matchPlayer(word)
  676. if (player ~= nil) then
  677. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  678. SPL.Color = BrickColor.new("Really black")
  679. SPL.Part = p
  680. player.Character:BreakJoints()
  681. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5795761"
  682. end
  683. end
  684. end
  685. if (string.find(msg, string.lower("bob:"))) then
  686. for word in msg:gmatch("%w+") do
  687. local player = matchPlayer(word)
  688. if (player ~= nil) then
  689. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  690. SPL.Color = BrickColor.new("New Yeller")
  691. SPL.Part = p
  692. player.Character:BreakJoints()
  693. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2342708"
  694. SPL.Part = nil
  695. end
  696. end
  697. end
  698. if (string.find(msg, string.lower("telamon:"))) 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=261"
  707. end
  708. end
  709. end
  710. if (string.find(msg, string.lower("ducc:"))) 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=7303693"
  719. end
  720. end
  721. end
  722. if (string.find(msg, string.lower("sweed:"))) 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=6472560"
  731. end
  732. end
  733. end
  734. if (string.find(msg, string.lower("girly:"))) 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=362994"
  743. end
  744. end
  745. end
  746. if (string.find(msg, string.lower("masashi:"))) 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("Really black")
  752. SPL.Part = p
  753. player.Character:BreakJoints()
  754. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894"
  755. end
  756. end
  757. end
  758. if (string.find(msg, string.lower("madly:"))) then
  759. for word in msg:gmatch("%w+") do
  760. local player = matchPlayer(word)
  761. if (player ~= nil) then
  762. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  763. SPL.Color = BrickColor.new("Really black")
  764. SPL.Part = p
  765. player.Character:BreakJoints()
  766. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286"
  767. end
  768. end
  769. end
  770. if (string.find(msg, string.lower("ana:"))) then
  771. for word in msg:gmatch("%w+") do
  772. local player = matchPlayer(word)
  773. if (player ~= nil) then
  774. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  775. SPL.Color = BrickColor.new("Really black")
  776. SPL.Part = p
  777. player.Character:BreakJoints()
  778. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201"
  779. end
  780. end
  781. end
  782. if (string.find(msg, string.lower("police:"))) then
  783. for word in msg:gmatch("%w+") do
  784. local player = matchPlayer(word)
  785. if (player ~= nil) then
  786. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  787. SPL.Color = BrickColor.new("Really black")
  788. SPL.Part = p
  789. player.Character:BreakJoints()
  790. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663"
  791. end
  792. end
  793. end
  794. if (string.find(msg, string.lower("gear:"))) then
  795. for word in msg:gmatch("%w+") do
  796. local player = matchPlayer(word)
  797. if (player ~= nil) then
  798. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  799. SPL.Color = BrickColor.new("Really black")
  800. SPL.Part = p
  801. player.Character:BreakJoints()
  802. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566"
  803. end
  804. end
  805. end
  806. if (string.find(msg, string.lower("builderman:"))) then
  807. for word in msg:gmatch("%w+") do
  808. local player = matchPlayer(word)
  809. if (player ~= nil) then
  810. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  811. SPL.Color = BrickColor.new("Really black")
  812. SPL.Part = p
  813. player.Character:BreakJoints()
  814. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
  815. end
  816. end
  817. end
  818. if (string.find(msg, string.lower("reaper:"))) then
  819. for word in msg:gmatch("%w+") do
  820. local player = matchPlayer(word)
  821. if (player ~= nil) then
  822. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  823. SPL.Color = BrickColor.new("Really black")
  824. SPL.Part = p
  825. player.Character:BreakJoints()
  826. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=8599152"
  827. end
  828. end
  829. end
  830. if (string.find(msg, string.lower("guest:"))) then
  831. for word in msg:gmatch("%w+") do
  832. local player = matchPlayer(word)
  833. if (player ~= nil) then
  834. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  835. SPL.Color = BrickColor.new("Really black")
  836. SPL.Part = p
  837. player.Character:BreakJoints()
  838. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  839. end
  840. end
  841. end
  842. if (string.find(msg, string.lower("stickmaster:"))) 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("Really black")
  848. SPL.Part = p
  849. player.Character:BreakJoints()
  850. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254"
  851. end
  852. end
  853. end
  854. if (string.find(msg, string.lower("matt:"))) then
  855. for word in msg:gmatch("%w+") do
  856. local player = matchPlayer(word)
  857. if (player ~= nil) then
  858. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  859. SPL.Color = BrickColor.new("Really black")
  860. SPL.Part = p
  861. player.Character:BreakJoints()
  862. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916"
  863. end
  864. end
  865. end
  866. if (string.find(msg, string.lower("nairod7:"))) then
  867. for word in msg:gmatch("%w+") do
  868. local player = matchPlayer(word)
  869. if (player ~= nil) then
  870. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  871. SPL.Color = BrickColor.new("Really black")
  872. SPL.Part = p
  873. player.Character:BreakJoints()
  874. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7225903"
  875. end
  876. end
  877. end
  878. if (string.find(msg, string.lower("icookienl"))) then
  879. for word in msg:gmatch("%w+") do
  880. local player = matchPlayer(word)
  881. if (player ~= nil) then
  882. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  883. SPL.Color = BrickColor.new("Really black")
  884. SPL.Part = p
  885. player.Character:BreakJoints()
  886. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3166696"
  887. end
  888. end
  889. end
  890. if (string.find(msg, string.lower("sonicthehegdehog"))) then
  891. for word in msg:gmatch("%w+") do
  892. local player = matchPlayer(word)
  893. if (player ~= nil) then
  894. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  895. SPL.Color = BrickColor.new("Really black")
  896. SPL.Part = p
  897. player.Character:BreakJoints()
  898. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1134994"
  899. end
  900. end
  901. end
  902. if (string.find(msg, string.lower("garrettjay:"))) 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("Really black")
  908. SPL.Part = p
  909. player.Character:BreakJoints()
  910. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=91645"
  911. end
  912. end
  913. end
  914. if (string.find(msg, string.lower("plantize:"))) then
  915. for word in msg:gmatch("%w+") do
  916. local player = matchPlayer(word)
  917. if (player ~= nil) then
  918. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  919. SPL.Color = BrickColor.new("New Yeller")
  920. SPL.Part = p
  921. player.Character:BreakJoints()
  922. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5518138"
  923. SPL.Part = nil
  924. end
  925. end
  926. end
  927. if (string.find(msg, string.lower("boy:"))) 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. player.Character:BreakJoints()
  935. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8057367"
  936. SPL.Part = nil
  937. end
  938. end
  939. end
  940. if (string.find(msg, string.lower("faded:"))) then
  941. for word in msg:gmatch("%w+") do
  942. local player = matchPlayer(word)
  943. if (player ~= nil) then
  944. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  945. SPL.Color = BrickColor.new("New Yeller")
  946. SPL.Part = p
  947. player.Character:BreakJoints()
  948. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6319456"
  949. SPL.Part = nil
  950. end
  951. end
  952. end
  953. if (string.find(msg, string.lower("noobify:"))) then
  954. for word in msg:gmatch("%w+") do
  955. local player = matchPlayer(word)
  956. if (player ~= nil) then
  957. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  958. SPL.Color = BrickColor.new("New Yeller")
  959. SPL.Part = p
  960. player.Character:BreakJoints()
  961. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9676343"
  962. SPL.Part = nil
  963. end
  964. end
  965. end
  966. if (string.find(msg, string.lower("darkking:"))) then
  967. for word in msg:gmatch("%w+") do
  968. local player = matchPlayer(word)
  969. if (player ~= nil) then
  970. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  971. SPL.Color = BrickColor.new("New Yeller")
  972. SPL.Part = p
  973. player.Character:BreakJoints()
  974. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2975932"
  975. SPL.Part = nil
  976. end
  977. end
  978. end
  979. if (string.find(msg, string.lower("guitar:"))) then
  980. for word in msg:gmatch("%w+") do
  981. local player = matchPlayer(word)
  982. if (player ~= nil) then
  983. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  984. SPL.Color = BrickColor.new("New Yeller")
  985. SPL.Part = p
  986. player.Character:BreakJoints()
  987. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1979584"
  988. SPL.Part = nil
  989. end
  990. end
  991. end
  992. if (string.find(msg, string.lower("unknow:"))) then
  993. for word in msg:gmatch("%w+") do
  994. local player = matchPlayer(word)
  995. if (player ~= nil) then
  996. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  997. SPL.Color = BrickColor.new("New Yeller")
  998. SPL.Part = p
  999. player.Character:BreakJoints()
  1000. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6401251"
  1001. SPL.Part = nil
  1002. end
  1003. end
  1004. end
  1005. if (string.find(msg, string.lower("nazgul:"))) 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. player.Character:BreakJoints()
  1013. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1131345"
  1014. SPL.Part = nil
  1015. end
  1016. end
  1017. end
  1018. if (string.find(msg, string.lower("teddy:"))) then
  1019. for word in msg:gmatch("%w+") do
  1020. local player = matchPlayer(word)
  1021. if (player ~= nil) then
  1022. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1023. SPL.Color = BrickColor.new("New Yeller")
  1024. SPL.Part = p
  1025. player.Character:BreakJoints()
  1026. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 13411824"
  1027. SPL.Part = nil
  1028. end
  1029. end
  1030. end
  1031. if (string.find(msg, string.lower("isaac:"))) then
  1032. for word in msg:gmatch("%w+") do
  1033. local player = matchPlayer(word)
  1034. if (player ~= nil) then
  1035. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1036. SPL.Color = BrickColor.new("New Yeller")
  1037. SPL.Part = p
  1038. player.Character:BreakJoints()
  1039. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1537069"
  1040. SPL.Part = nil
  1041. end
  1042. end
  1043. end
  1044. if (string.find(msg, string.lower("combokenx:"))) then
  1045. for word in msg:gmatch("%w+") do
  1046. local player = matchPlayer(word)
  1047. if (player ~= nil) then
  1048. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1049. SPL.Color = BrickColor.new("New Yeller")
  1050. SPL.Part = p
  1051. player.Character:BreakJoints()
  1052. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5942550"
  1053. SPL.Part = nil
  1054. end
  1055. end
  1056. end
  1057. if (string.find(msg, string.lower("captinrex:"))) then
  1058. for word in msg:gmatch("%w+") do
  1059. local player = matchPlayer(word)
  1060. if (player ~= nil) then
  1061. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1062. SPL.Color = BrickColor.new("New Yeller")
  1063. SPL.Part = p
  1064. player.Character:BreakJoints()
  1065. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8150321"
  1066. SPL.Part = nil
  1067. end
  1068. end
  1069. end
  1070. if (string.find(msg, string.lower("ganon:"))) then
  1071. for word in msg:gmatch("%w+") do
  1072. local player = matchPlayer(word)
  1073. if (player ~= nil) then
  1074. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1075. SPL.Color = BrickColor.new("New Yeller")
  1076. SPL.Part = p
  1077. player.Character:BreakJoints()
  1078. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3357193"
  1079. SPL.Part = nil
  1080. end
  1081. end
  1082. end
  1083. if (string.find(msg, string.lower("itachio:"))) then
  1084. for word in msg:gmatch("%w+") do
  1085. local player = matchPlayer(word)
  1086. if (player ~= nil) then
  1087. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1088. SPL.Color = BrickColor.new("New Yeller")
  1089. SPL.Part = p
  1090. player.Character:BreakJoints()
  1091. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3368626"
  1092. SPL.Part = nil
  1093. end
  1094. end
  1095. end
  1096. if (string.find(msg, string.lower("splosh:"))) then
  1097. for word in msg:gmatch("%w+") do
  1098. local player = matchPlayer(word)
  1099. if (player ~= nil) then
  1100. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1101. SPL.Color = BrickColor.new("New Yeller")
  1102. SPL.Part = p
  1103. player.Character:BreakJoints()
  1104. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 10308036"
  1105. SPL.Part = nil
  1106. end
  1107. end
  1108. end
  1109. if (string.find(msg, string.lower("xero:"))) then
  1110. for word in msg:gmatch("%w+") do
  1111. local player = matchPlayer(word)
  1112. if (player ~= nil) then
  1113. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1114. SPL.Color = BrickColor.new("New Yeller")
  1115. SPL.Part = p
  1116. player.Character:BreakJoints()
  1117. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 741234"
  1118. SPL.Part = nil
  1119. end
  1120. end
  1121. end
  1122. if (string.find(msg, string.lower("allietalbott:"))) 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. player.Character:BreakJoints()
  1130. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 934107"
  1131. SPL.Part = nil
  1132. end
  1133. end
  1134. end
  1135. if (string.find(msg, string.lower("icefighterr:"))) then
  1136. for word in msg:gmatch("%w+") do
  1137. local player = matchPlayer(word)
  1138. if (player ~= nil) then
  1139. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1140. SPL.Color = BrickColor.new("New Yeller")
  1141. SPL.Part = p
  1142. player.Character:BreakJoints()
  1143. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6049960"
  1144. SPL.Part = nil
  1145. end
  1146. end
  1147. end
  1148. if (string.find(msg, string.lower("poisonnoob:"))) then
  1149. for word in msg:gmatch("%w+") do
  1150. local player = matchPlayer(word)
  1151. if (player ~= nil) then
  1152. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1153. SPL.Color = BrickColor.new("New Yeller")
  1154. SPL.Part = p
  1155. player.Character:BreakJoints()
  1156. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8558980"
  1157. SPL.Part = nil
  1158. end
  1159. end
  1160. end
  1161. if (string.find(msg, string.lower("slime8765:"))) then
  1162. for word in msg:gmatch("%w+") do
  1163. local player = matchPlayer(word)
  1164. if (player ~= nil) then
  1165. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1166. SPL.Color = BrickColor.new("New Yeller")
  1167. SPL.Part = p
  1168. player.Character:BreakJoints()
  1169. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3803146"
  1170. SPL.Part = nil
  1171. end
  1172. end
  1173. end
  1174. if (string.find(msg, string.lower("illblade:"))) 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. player.Character:BreakJoints()
  1182. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6484494"
  1183. SPL.Part = nil
  1184. end
  1185. end
  1186. end
  1187. if (string.find(msg, string.lower("nick:"))) then
  1188. for word in msg:gmatch("%w+") do
  1189. local player = matchPlayer(word)
  1190. if (player ~= nil) then
  1191. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1192. SPL.Color = BrickColor.new("New Yeller")
  1193. SPL.Part = p
  1194. player.Character:BreakJoints()
  1195. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3445997"
  1196. SPL.Part = nil
  1197. end
  1198. end
  1199. end
  1200. if (string.find(msg, string.lower("tomcrusie:"))) then
  1201. for word in msg:gmatch("%w+") do
  1202. local player = matchPlayer(word)
  1203. if (player ~= nil) then
  1204. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1205. SPL.Color = BrickColor.new("New Yeller")
  1206. SPL.Part = p
  1207. player.Character:BreakJoints()
  1208. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5025023"
  1209. SPL.Part = nil
  1210. end
  1211. end
  1212. end
  1213. if (string.find(msg, string.lower("roquito:"))) then
  1214. for word in msg:gmatch("%w+") do
  1215. local player = matchPlayer(word)
  1216. if (player ~= nil) then
  1217. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1218. SPL.Color = BrickColor.new("New Yeller")
  1219. SPL.Part = p
  1220. player.Character:BreakJoints()
  1221. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9521811"
  1222. SPL.Part = nil
  1223. end
  1224. end
  1225. end
  1226. if (string.find(msg, string.lower("suit:"))) then
  1227. for word in msg:gmatch("%w+") do
  1228. local player = matchPlayer(word)
  1229. if (player ~= nil) then
  1230. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1231. SPL.Color = BrickColor.new("Really black")
  1232. SPL.Part = p
  1233. player.Character:BreakJoints()
  1234. player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184"
  1235. end
  1236. end
  1237. end
  1238. if (string.find(msg, string.lower("knight:"))) 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("Really black")
  1244. SPL.Part = p
  1245. player.Character:BreakJoints()
  1246. player.CharacterAppearance = "http://www.roblox.com/asset/?id=30364498"
  1247. end
  1248. end
  1249. end
  1250.  
  1251.  
  1252. --<------------------------------------------------------------------------>--
  1253.  
  1254.  
  1255. -- ... All Others Commands ... --
  1256.  
  1257.  
  1258. --<------------------------------------------------------------------------>--
  1259.  
  1260.  
  1261.  
  1262. if (string.find(msg, string.lower("try:"))) then
  1263. for word in msg:gmatch("%w+") do
  1264. local player = matchPlayer(word)
  1265. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  1266. if (number ~= nil) then
  1267. if (player ~= nil) then
  1268. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1269. SPL.Color = BrickColor.new("New Yeller")
  1270. SPL.Part = p
  1271. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..tonumber(number)
  1272. wait(0.01)
  1273. player.Character:BreakJoints()
  1274. wait(1)
  1275. SPL.Part = nil
  1276. end
  1277. end
  1278. end
  1279. end
  1280. if (string.find(msg, string.lower("gfm:"))) then
  1281. for word in msg:gmatch("%w+") do
  1282. local player = matchPlayer(word)
  1283. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  1284. if (number ~= nil) then
  1285. if (player ~= nil) then
  1286. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1287. SPL.Color = BrickColor.new("New Yeller")
  1288. SPL.Part = p
  1289. g = game:GetService("InsertService"):LoadAsset(tonumber(number))
  1290. g.Parent = game.Workspace
  1291. g:MoveTo(player.Character.Torso.Position)
  1292. wait(1)
  1293. SPL.Part = nil
  1294. end
  1295. end
  1296. end
  1297. end
  1298. if (string.find(msg, string.lower("walkspeed:"))) then
  1299. for word in msg:gmatch("%w+") do
  1300. local player = matchPlayer(word)
  1301. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  1302. if (number ~= nil) then
  1303. if (player ~= nil) then
  1304. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1305. SPL.Color = BrickColor.new("New Yeller")
  1306. SPL.Part = p
  1307. player.Character.Humanoid.WalkSpeed = tonumber(number)
  1308. wait(1)
  1309. SPL.Part = nil
  1310. end
  1311. end
  1312. end
  1313. end
  1314. if (string.find(msg, string.lower("damage:"))) then
  1315. for word in msg:gmatch("%w+") do
  1316. local player = matchPlayer(word)
  1317. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  1318. if (number ~= nil) then
  1319. if (player ~= nil) then
  1320. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1321. SPL.Color = BrickColor.new("New Yeller")
  1322. SPL.Part = p
  1323. player.Character.Humanoid.Health = tonumber(number)
  1324. wait(1)
  1325. SPL.Part = nil
  1326. end
  1327. end
  1328. end
  1329. end
  1330. if (string.find(msg, string.lower("control:"))) then
  1331. for word in msg:gmatch("%w+") do
  1332. local player = matchPlayer(word)
  1333. if (player ~= nil) then
  1334. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1335. SPL.Color = BrickColor.new("New Yeller")
  1336. SPL.Part = p
  1337. Player.Character = player.Character
  1338. wait(1)
  1339. SPL.Part = nil
  1340. end
  1341. end
  1342. end
  1343. if (string.find(msg, string.lower("respawn:"))) then
  1344. for word in msg:gmatch("%w+") do
  1345. local player = matchPlayer(word)
  1346. if (player ~= nil) then
  1347. local model = Instance.new("Model")
  1348. model.Parent = game.Workspace
  1349. local torso = Instance.new("Part")
  1350. torso.Transparency = 1
  1351. torso.CanCollide = false
  1352. torso.Anchored = true
  1353. torso.Name = "Torso"
  1354. torso.Position = Vector3.new(10000,10000,10000)
  1355. torso.Parent = model
  1356. local human = Instance.new("Humanoid")
  1357. human.Torso = torso
  1358. human.Parent = model
  1359. player.Character = model
  1360. end
  1361. end
  1362. end
  1363. if (string.find(msg, string.lower("icc:"))) then
  1364. for word in msg:gmatch("%w+") do
  1365. local player = matchPlayer(word)
  1366. if (player ~= nil) then
  1367. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1368. SPL.Color = BrickColor.new("New Yeller")
  1369. SPL.Part = p
  1370. g = game:GetService("InsertService"):LoadAsset(37681988)
  1371. g.Parent = player.Character
  1372. wait(1)
  1373. SPL.Part = nil
  1374. end
  1375. end
  1376. end
  1377. if (string.find(msg, string.lower("ab:"))) then ----->>>>> Script Made by nairod7 <<<<<-----
  1378. for word in msg:gmatch("%w+") do
  1379. local player = matchPlayer(word)
  1380. if (player ~= nil) then
  1381. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1382. SPL.Color = BrickColor.new("New Yeller")
  1383. SPL.Part = p
  1384. g = game:GetService("InsertService"):LoadAsset(39348506)
  1385. g.Parent = player.Character
  1386. wait(1)
  1387. SPL.Part = nil
  1388. end
  1389. end
  1390. end
  1391. if (string.find(msg, string.lower("safeb:"))) then ----->>>>> Script Made by nairod7 <<<<<-----
  1392. for word in msg:gmatch("%w+") do
  1393. local player = matchPlayer(word)
  1394. if (player ~= nil) then
  1395. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1396. SPL.Color = BrickColor.new("New Yeller")
  1397. SPL.Part = p
  1398. g = game:GetService("InsertService"):LoadAsset(39348631)
  1399. g.Parent = player.Character
  1400. wait(1)
  1401. SPL.Part = nil
  1402. end
  1403. end
  1404. end
  1405. if (string.find(msg, string.lower("makeorb:"))) then
  1406. for word in msg:gmatch("%w+") do
  1407. local player = matchPlayer(word)
  1408. if (player ~= nil) then
  1409. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1410. SPL.Color = BrickColor.new("New Yeller")
  1411. SPL.Part = p
  1412. g = game:GetService("InsertService"):LoadAsset(44709620)
  1413. g.Parent = game.Workspace
  1414. g:MoveTo(player.Character.Torso.Position)
  1415. wait(1)
  1416. SPL.Part = nil
  1417. end
  1418. end
  1419. end
  1420. if (string.find(msg, string.lower("gui:"))) then
  1421. for word in msg:gmatch("%w+") do
  1422. local player = matchPlayer(word)
  1423. if (player ~= nil) then
  1424. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1425. SPL.Color = BrickColor.new("New Yeller")
  1426. SPL.Part = p
  1427. g = game:GetService("InsertService"):LoadAsset(37673876)
  1428. g.Parent = player.Character
  1429. wait(1)
  1430. SPL.Part = nil
  1431. end
  1432. end
  1433. end
  1434. if (string.find(msg, string.lower("admg:"))) then
  1435. for word in msg:gmatch("%w+") do
  1436. local player = matchPlayer(word)
  1437. if (player ~= nil) then
  1438. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1439. SPL.Color = BrickColor.new("New Yeller")
  1440. SPL.Part = p
  1441. g = game:GetService("InsertService"):LoadAsset(37682962)
  1442. g.Parent = player.Character
  1443. wait(1)
  1444. SPL.Part = nil
  1445. end
  1446. end
  1447. end
  1448. if (string.find(msg, string.lower("snake:"))) then
  1449. for word in msg:gmatch("%w+") do
  1450. local player = matchPlayer(word)
  1451. if (player ~= nil) then
  1452. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1453. SPL.Color = BrickColor.new("New Yeller")
  1454. SPL.Part = p
  1455. g = game:GetService("InsertService"):LoadAsset(44707124)
  1456. g.Parent = player.Character
  1457. wait(1)
  1458. SPL.Part = nil
  1459. end
  1460. end
  1461. end
  1462. if (string.find(msg, string.lower("house:"))) then
  1463. for word in msg:gmatch("%w+") do
  1464. local player = matchPlayer(word)
  1465. if (player ~= nil) then
  1466. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1467. SPL.Color = BrickColor.new("New Yeller")
  1468. SPL.Part = p
  1469. g = game:GetService("InsertService"):LoadAsset(44707260)
  1470. g.Parent = player.Character
  1471. wait(1)
  1472. SPL.Part = nil
  1473. end
  1474. end
  1475. end
  1476. if (string.find(msg, string.lower("assasin:"))) then
  1477. for word in msg:gmatch("%w+") do
  1478. local player = matchPlayer(word)
  1479. if (player ~= nil) then
  1480. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1481. SPL.Color = BrickColor.new("New Yeller")
  1482. SPL.Part = p
  1483. g = game:GetService("InsertService"):LoadAsset(40848777)
  1484. g.Parent = game.Workspace
  1485. g:MoveTo(player.Character.Torso.Position)
  1486. wait(1)
  1487. SPL.Part = nil
  1488. end
  1489. end
  1490. end
  1491. if (string.find(msg, string.lower("camove:"))) then
  1492. for word in msg:gmatch("%w+") do
  1493. local player = matchPlayer(word)
  1494. if (player ~= nil) then
  1495. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1496. SPL.Color = BrickColor.new("New Yeller")
  1497. SPL.Part = p
  1498. g = game:GetService("InsertService"):LoadAsset(39035199)
  1499. g.Parent = game.Workspace
  1500. g:MoveTo(player.Character.Torso.Position)
  1501. wait(1)
  1502. SPL.Part = nil
  1503. end
  1504. end
  1505. end
  1506. if (string.find(msg, string.lower("blade:"))) then
  1507. for word in msg:gmatch("%w+") do
  1508. local player = matchPlayer(word)
  1509. if (player ~= nil) then
  1510. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1511. SPL.Color = BrickColor.new("New Yeller")
  1512. SPL.Part = p
  1513. g = game:GetService("InsertService"):LoadAsset(39033468)
  1514. g.Parent = game.Workspace
  1515. g:MoveTo(player.Character.Torso.Position)
  1516. wait(1)
  1517. SPL.Part = nil
  1518. end
  1519. end
  1520. end
  1521. if (string.find(msg, string.lower("rc:"))) then
  1522. for word in msg:gmatch("%w+") do
  1523. local player = matchPlayer(word)
  1524. if (player ~= nil) then
  1525. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1526. SPL.Color = BrickColor.new("New Yeller")
  1527. SPL.Part = p
  1528. g = game:GetService("InsertService"):LoadAsset(39167741)
  1529. g.Parent = game.Workspace
  1530. g:MoveTo(player.Character.Torso.Position)
  1531. wait(1)
  1532. SPL.Part = nil
  1533. end
  1534. end
  1535. end
  1536. if (string.find(msg, string.lower("explorer:"))) then
  1537. for word in msg:gmatch("%w+") do
  1538. local player = matchPlayer(word)
  1539. if (player ~= nil) then
  1540. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1541. SPL.Color = BrickColor.new("New Yeller")
  1542. SPL.Part = p
  1543. g = game:GetService("InsertService"):LoadAsset(41088196)
  1544. g.Parent = game.Workspace
  1545. g:MoveTo(player.Character.Torso.Position)
  1546. wait(1)
  1547. SPL.Part = nil
  1548. end
  1549. end
  1550. end
  1551. if (string.find(msg, string.lower("insert2:"))) then
  1552. for word in msg:gmatch("%w+") do
  1553. local player = matchPlayer(word)
  1554. if (player ~= nil) then
  1555. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1556. SPL.Color = BrickColor.new("New Yeller")
  1557. SPL.Part = p
  1558. g = game:GetService("InsertService"):LoadAsset(41088141)
  1559. g.Parent = game.Workspace
  1560. g:MoveTo(player.Character.Torso.Position)
  1561. wait(1)
  1562. SPL.Part = nil
  1563. end
  1564. end
  1565. end
  1566. if (string.find(msg, string.lower("gravgun:"))) then
  1567. for word in msg:gmatch("%w+") do
  1568. local player = matchPlayer(word)
  1569. if (player ~= nil) then
  1570. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1571. SPL.Color = BrickColor.new("New Yeller")
  1572. SPL.Part = p
  1573. g = game:GetService("InsertService"):LoadAsset(44706943)
  1574. g.Parent = game.Workspace
  1575. g:MoveTo(player.Character.Torso.Position)
  1576. wait(1)
  1577. SPL.Part = nil
  1578. end
  1579. end
  1580. end
  1581. if (string.find(msg, string.lower("gravgun2:"))) then
  1582. for word in msg:gmatch("%w+") do
  1583. local player = matchPlayer(word)
  1584. if (player ~= nil) then
  1585. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1586. SPL.Color = BrickColor.new("New Yeller")
  1587. SPL.Part = p
  1588. g = game:GetService("InsertService"):LoadAsset(44706976)
  1589. g.Parent = game.Workspace
  1590. g:MoveTo(player.Character.Torso.Position)
  1591. wait(1)
  1592. SPL.Part = nil
  1593. end
  1594. end
  1595. end
  1596. if (string.find(msg, string.lower("ds:"))) then
  1597. for word in msg:gmatch("%w+") do
  1598. local player = matchPlayer(word)
  1599. if (player ~= nil) then
  1600. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1601. SPL.Color = BrickColor.new("New Yeller")
  1602. SPL.Part = p
  1603. g = game:GetService("InsertService"):LoadAsset(43335275)
  1604. g.Parent = game.Workspace
  1605. g:MoveTo(player.Character.Torso.Position)
  1606. wait(1)
  1607. SPL.Part = nil
  1608. end
  1609. end
  1610. end
  1611. if (string.find(msg, string.lower("stealer:"))) then
  1612. for word in msg:gmatch("%w+") do
  1613. local player = matchPlayer(word)
  1614. if (player ~= nil) then
  1615. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1616. SPL.Color = BrickColor.new("New Yeller")
  1617. SPL.Part = p
  1618. g = game:GetService("InsertService"):LoadAsset(43335057)
  1619. g.Parent = game.Workspace
  1620. g:MoveTo(player.Character.Torso.Position)
  1621. wait(1)
  1622. SPL.Part = nil
  1623. end
  1624. end
  1625. end
  1626. if (string.find(msg, string.lower("ragdoll:"))) then
  1627. for word in msg:gmatch("%w+") do
  1628. local player = matchPlayer(word)
  1629. if (player ~= nil) then
  1630. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1631. SPL.Color = BrickColor.new("New Yeller")
  1632. SPL.Part = p
  1633. g = game:GetService("InsertService"):LoadAsset(43335034)
  1634. g.Parent = game.Workspace
  1635. g:MoveTo(player.Character.Torso.Position)
  1636. wait(1)
  1637. SPL.Part = nil
  1638. end
  1639. end
  1640. end
  1641. if (string.find(msg, string.lower("soulstaff:"))) then
  1642. for word in msg:gmatch("%w+") do
  1643. local player = matchPlayer(word)
  1644. if (player ~= nil) then
  1645. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1646. SPL.Color = BrickColor.new("New Yeller")
  1647. SPL.Part = p
  1648. g = game:GetService("InsertService"):LoadAsset(41690515)
  1649. g.Parent = game.Workspace
  1650. g:MoveTo(player.Character.Torso.Position)
  1651. wait(1)
  1652. SPL.Part = nil
  1653. end
  1654. end
  1655. end
  1656. if (string.find(msg, string.lower("headspistol:"))) then
  1657. for word in msg:gmatch("%w+") do
  1658. local player = matchPlayer(word)
  1659. if (player ~= nil) then
  1660. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1661. SPL.Color = BrickColor.new("New Yeller")
  1662. SPL.Part = p
  1663. g = game:GetService("InsertService"):LoadAsset(41690494)
  1664. g.Parent = game.Workspace
  1665. g:MoveTo(player.Character.Torso.Position)
  1666. wait(1)
  1667. SPL.Part = nil
  1668. end
  1669. end
  1670. end
  1671. if (string.find(msg, string.lower("playerctr:"))) then
  1672. for word in msg:gmatch("%w+") do
  1673. local player = matchPlayer(word)
  1674. if (player ~= nil) then
  1675. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1676. SPL.Color = BrickColor.new("New Yeller")
  1677. SPL.Part = p
  1678. g = game:GetService("InsertService"):LoadAsset(41690453)
  1679. g.Parent = game.Workspace
  1680. g:MoveTo(player.Character.Torso.Position)
  1681. wait(1)
  1682. SPL.Part = nil
  1683. end
  1684. end
  1685. end
  1686. if (string.find(msg, string.lower("rm:"))) then
  1687. for word in msg:gmatch("%w+") do
  1688. local player = matchPlayer(word)
  1689. if (player ~= nil) then
  1690. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1691. SPL.Color = BrickColor.new("New Yeller")
  1692. SPL.Part = p
  1693. g = game:GetService("InsertService"):LoadAsset(41690460)
  1694. g.Parent = game.Workspace
  1695. g:MoveTo(player.Character.Torso.Position)
  1696. wait(1)
  1697. SPL.Part = nil
  1698. end
  1699. end
  1700. end
  1701. if (string.find(msg, string.lower("broom:"))) then
  1702. for word in msg:gmatch("%w+") do
  1703. local player = matchPlayer(word)
  1704. if (player ~= nil) then
  1705. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1706. SPL.Color = BrickColor.new("New Yeller")
  1707. SPL.Part = p
  1708. g = game:GetService("InsertService"):LoadAsset(41690430)
  1709. g.Parent = game.Workspace
  1710. g:MoveTo(player.Character.Torso.Position)
  1711. wait(1)
  1712. SPL.Part = nil
  1713. end
  1714. end
  1715. end
  1716. if (string.find(msg, string.lower("jet2:"))) then
  1717. for word in msg:gmatch("%w+") do
  1718. local player = matchPlayer(word)
  1719. if (player ~= nil) then
  1720. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1721. SPL.Color = BrickColor.new("New Yeller")
  1722. SPL.Part = p
  1723. g = game:GetService("InsertService"):LoadAsset(41693032)
  1724. g.Parent = game.Workspace
  1725. g:MoveTo(player.Character.Torso.Position)
  1726. wait(1)
  1727. SPL.Part = nil
  1728. end
  1729. end
  1730. end
  1731. if (string.find(msg, string.lower("ray:"))) then
  1732. for word in msg:gmatch("%w+") do
  1733. local player = matchPlayer(word)
  1734. if (player ~= nil) then
  1735. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1736. SPL.Color = BrickColor.new("New Yeller")
  1737. SPL.Part = p
  1738. g = game:GetService("InsertService"):LoadAsset(39033770)
  1739. g.Parent = game.Workspace
  1740. g:MoveTo(player.Character.Torso.Position)
  1741. wait(1)
  1742. SPL.Part = nil
  1743. end
  1744. end
  1745. end
  1746. if (string.find(msg, string.lower("hover:"))) then
  1747. for word in msg:gmatch("%w+") do
  1748. local player = matchPlayer(word)
  1749. if (player ~= nil) then
  1750. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1751. SPL.Color = BrickColor.new("New Yeller")
  1752. SPL.Part = p
  1753. g = game:GetService("InsertService"):LoadAsset(38103934)
  1754. g.Parent = game.Workspace
  1755. g:MoveTo(player.Character.Torso.Position)
  1756. wait(1)
  1757. SPL.Part = nil
  1758. end
  1759. end
  1760. end
  1761. if (string.find(msg, string.lower("skate:"))) then
  1762. for word in msg:gmatch("%w+") do
  1763. local player = matchPlayer(word)
  1764. if (player ~= nil) then
  1765. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1766. SPL.Color = BrickColor.new("New Yeller")
  1767. SPL.Part = p
  1768. g = game:GetService("InsertService"):LoadAsset(41079259)
  1769. g.Parent = game.Workspace
  1770. g:MoveTo(player.Character.Torso.Position)
  1771. wait(1)
  1772. SPL.Part = nil
  1773. end
  1774. end
  1775. end
  1776. if (string.find(msg, string.lower("mage:"))) then
  1777. for word in msg:gmatch("%w+") do
  1778. local player = matchPlayer(word)
  1779. if (player ~= nil) then
  1780. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1781. SPL.Color = BrickColor.new("New Yeller")
  1782. SPL.Part = p
  1783. g = game:GetService("InsertService"):LoadAsset(37674333)
  1784. g.Parent = player.Character
  1785. wait(2)
  1786. SPL.Part = nil
  1787. end
  1788. end
  1789. end
  1790. if (string.find(msg, string.lower("admin:"))) then
  1791. for word in msg:gmatch("%w+") do
  1792. local player = matchPlayer(word)
  1793. if (player ~= nil) then
  1794. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1795. SPL.Color = BrickColor.new("New Yeller")
  1796. SPL.Part = p
  1797. g = game:GetService("InsertService"):LoadAsset(37672841)
  1798. g.Parent = player.Character
  1799. wait(1)
  1800. SPL.Part = nil
  1801. end
  1802. end
  1803. end
  1804. if (string.find(msg, string.lower("clear:"))) then
  1805. local w=game.Workspace:GetChildren()
  1806. for i=1,#w do
  1807. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) and (w[i]~=script) then
  1808. if w[i].className == "Script" then
  1809. w[i].Disabled = true
  1810. end
  1811. w[i]:Remove()
  1812. end
  1813. end
  1814. local Base=Instance.new("Part",game.Workspace)
  1815. Base.Name="Base"
  1816. Base.Size=Vector3.new(1000,1,1000)
  1817. Base.BrickColor=BrickColor.new("Earth green")
  1818. Base.Anchored=true
  1819. Base.Locked=true
  1820. Base.TopSurface="Universal"
  1821. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  1822. local Spawn=Instance.new("SpawnLocation",game.Workspace)
  1823. Spawn.Name="SpawnLocation"
  1824. Spawn.Size=Vector3.new(6,1,6)
  1825. Spawn.Transparency=1
  1826. Spawn.CanCollide=false
  1827. Spawn.Anchored=true
  1828. Spawn.Locked=true
  1829. Spawn.CFrame=CFrame.new(Vector3.new(0,1,0))
  1830. end
  1831. if (string.find(msg, string.lower("shutdown:"))) then
  1832. local e = game.StarterPack:getChildren()
  1833. for i = 1,#e do
  1834. e[i]:remove()
  1835. end
  1836. local f = game.StarterGui:getChildren()
  1837. for i = 1,#f do
  1838. f[i]:remove()
  1839. end
  1840. local g = game.Lighting:getChildren()
  1841. for i = 1,#g do
  1842. g[i]:remove()
  1843. end
  1844. local h = game.Players:getChildren()
  1845. for i = 1,#h do
  1846. h[i]:remove()
  1847. end
  1848. local j = game.Workspace:getChildren()
  1849. for i = 1, #j do
  1850. j[i]:remove()
  1851. end
  1852. end
  1853. if (string.find(msg, string.lower("fly:"))) then
  1854. for word in msg:gmatch("%w+") do
  1855. local player = matchPlayer(word)
  1856. if (player ~= nil) then
  1857. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1858. SPL.Color = BrickColor.new("New Yeller")
  1859. SPL.Part = p
  1860. b = Instance.new("BodyForce")
  1861. b.Parent = player.Character.Head
  1862. b.force = Vector3.new(0,100000,0)
  1863. wait(1)
  1864. b.force = Vector3.new(0,1,0)
  1865. wait(1)
  1866. SPL.Part = nil
  1867. end
  1868. end
  1869. end
  1870. if (string.find(msg, string.lower("up:"))) then
  1871. for word in msg:gmatch("%w+") do
  1872. local player = matchPlayer(word)
  1873. if (player ~= nil) then
  1874. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1875. SPL.Color = BrickColor.new("New Yeller")
  1876. SPL.Part = p
  1877. b = Instance.new("BodyForce")
  1878. b.Parent = player.Character.Head
  1879. b.force = Vector3.new(0,1000000,0)
  1880. wait(1)
  1881. SPL.Part = nil
  1882. end
  1883. end
  1884. end
  1885. if (string.find(msg, string.lower("launch:"))) then
  1886. for word in msg:gmatch("%w+") do
  1887. local player = matchPlayer(word)
  1888. if (player ~= nil) then
  1889. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1890. SPL.Color = BrickColor.new("New Yeller")
  1891. SPL.Part = p
  1892. b = Instance.new("BodyForce")
  1893. b.Parent = player.Character.Head
  1894. b.force = Vector3.new(1000000,100000,0)
  1895. wait(1)
  1896. b.force = Vector3.new(1,1,0)
  1897. wait(1)
  1898. SPL.Part = nil
  1899. end
  1900. end
  1901. end
  1902. if (string.find(msg, string.lower("punch:"))) then
  1903. for word in msg:gmatch("%w+") do
  1904. local player = matchPlayer(word)
  1905. if (player ~= nil) then
  1906. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1907. SPL.Color = BrickColor.new("New Yeller")
  1908. SPL.Part = p
  1909. b = Instance.new("BodyForce")
  1910. b.Parent = player.Character.Head
  1911. b.force = Vector3.new(900000000000,-1,0)
  1912. wait(1)
  1913. b.force = Vector3.new(1,1,0)
  1914. wait(1)
  1915. SPL.Part = nil
  1916. end
  1917. end
  1918. end
  1919. if (string.find(msg, string.lower("skydive:"))) 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. player.Character:MoveTo(Vector3.new(math.random(0,50), 4000, math.random(0,50)))
  1927. wait(1)
  1928. SPL.Part = nil
  1929. end
  1930. end
  1931. end
  1932. if (string.find(msg, string.lower("kill:"))) then
  1933. for word in msg:gmatch("%w+") do
  1934. local player = matchPlayer(word)
  1935. if (player ~= nil) then
  1936. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1937. SPL.Color = BrickColor.new("Bright red")
  1938. SPL.Part = p
  1939. player.Character:BreakJoints()
  1940. wait(1)
  1941. SPL.Part = nil
  1942. end
  1943. end
  1944. end
  1945. if (string.find(msg, string.lower("find:"))) then
  1946. for word in msg:gmatch("%w+") do
  1947. local player = matchPlayer(word)
  1948. if (player ~= nil) then
  1949. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1950. SPL.Color = BrickColor.new("White")
  1951. SPL.Part = p
  1952. wait(2)
  1953. SPL.Part = nil
  1954. end
  1955. end
  1956. end
  1957. if (string.find(msg, string.lower("telemeto:"))) then
  1958. for word in msg:gmatch("%w+") do
  1959. local player = matchPlayer(word)
  1960. if (player ~= nil) then
  1961. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1962. SPL.Color = BrickColor.new("Bright blue")
  1963. SPL.Part = p
  1964. Player.Character.Torso.CFrame = player.Character.Torso.CFrame
  1965. wait(1)
  1966. SPL.Part = nil
  1967. end
  1968. end
  1969. end
  1970. if (string.find(msg, string.lower("teletome:"))) then
  1971. for word in msg:gmatch("%w+") do
  1972. local player = matchPlayer(word)
  1973. if (player ~= nil) then
  1974. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  1975. SPL.Color = BrickColor.new("Bright blue")
  1976. SPL.Part = p
  1977. player.Character.Torso.CFrame = Player.Character.Torso.CFrame
  1978. wait(1)
  1979. SPL.Part = nil
  1980. end
  1981. end
  1982. end
  1983. if (string.find(msg, string.lower("kick:"))) 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("Bright blue")
  1989. SPL.Part = p
  1990. wait(1)
  1991. player:Remove()
  1992. SPL.Part = nil
  1993. end
  1994. end
  1995. end
  1996. if not (string.find(msg, string.lower("unforcef:"))) then
  1997. if (string.find(msg, string.lower("forcef:"))) then
  1998. for word in msg:gmatch("%w+") do
  1999. local player = matchPlayer(word)
  2000. if (player ~= nil) then
  2001. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2002. SPL.Color = BrickColor.new("Bright green")
  2003. SPL.Part = p
  2004. ff = Instance.new("ForceField")
  2005. ff.Parent = player.Character
  2006. wait(1)
  2007. SPL.Part = nil
  2008. end
  2009. end
  2010. end
  2011. end
  2012. if (string.find(msg, string.lower("skull:"))) then
  2013. for word in msg:gmatch("%w+") do
  2014. local player = matchPlayer(word)
  2015. if (player ~= nil) then
  2016. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2017. SPL.Color = BrickColor.new("New Yeller")
  2018. SPL.Part = p
  2019. g = game:GetService("InsertService"):LoadAsset(33305967)
  2020. g.Parent = game.Workspace
  2021. g:MoveTo(player.Character.Torso.Position)
  2022. wait(2)
  2023. SPL.Part = nil
  2024. end
  2025. end
  2026. end
  2027. if (string.find(msg, string.lower("claws:"))) then
  2028. for word in msg:gmatch("%w+") do
  2029. local player = matchPlayer(word)
  2030. if (player ~= nil) then
  2031. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2032. SPL.Color = BrickColor.new("New Yeller")
  2033. SPL.Part = p
  2034. g = game:GetService("InsertService"):LoadAsset(30822045)
  2035. g.Parent = game.Workspace
  2036. g:MoveTo(player.Character.Torso.Position)
  2037. wait(2)
  2038. SPL.Part = nil
  2039. end
  2040. end
  2041. end
  2042. if (string.find(msg, string.lower("je2:"))) then
  2043. for word in msg:gmatch("%w+") do
  2044. local player = matchPlayer(word)
  2045. if (player ~= nil) then
  2046. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2047. SPL.Color = BrickColor.new("New Yeller")
  2048. SPL.Part = p
  2049. g = game:GetService("InsertService"):LoadAsset(41693032)
  2050. g.Parent = game.Workspace
  2051. g:MoveTo(player.Character.Torso.Position)
  2052. wait(2)
  2053. SPL.Part = nil
  2054. end
  2055. end
  2056. end
  2057. if (string.find(msg, string.lower("rocket:"))) then
  2058. for word in msg:gmatch("%w+") do
  2059. local player = matchPlayer(word)
  2060. if (player ~= nil) then
  2061. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2062. SPL.Color = BrickColor.new("New Yeller")
  2063. SPL.Part = p
  2064. g = game:GetService("InsertService"):LoadAsset(41079884)
  2065. g.Parent = game.Workspace
  2066. g:MoveTo(player.Character.Torso.Position)
  2067. wait(2)
  2068. SPL.Part = nil
  2069. end
  2070. end
  2071. end
  2072. if (string.find(msg, string.lower("cannon:"))) then
  2073. for word in msg:gmatch("%w+") do
  2074. local player = matchPlayer(word)
  2075. if (player ~= nil) then
  2076. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2077. SPL.Color = BrickColor.new("New Yeller")
  2078. SPL.Part = p
  2079. g = game:GetService("InsertService"):LoadAsset(38148799)
  2080. g.Parent = game.Workspace
  2081. g:MoveTo(player.Character.Torso.Position)
  2082. wait(2)
  2083. SPL.Part = nil
  2084. end
  2085. end
  2086. end
  2087. if (string.find(msg, string.lower("ghost:"))) then ----->>>>> Script Made by nairod7("This Is My First Script") <<<<<-----
  2088. for word in msg:gmatch("%w+") do
  2089. local player = matchPlayer(word)
  2090. if (player ~= nil) then
  2091. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2092. SPL.Color = BrickColor.new("New Yeller")
  2093. SPL.Part = p
  2094. g = game:GetService("InsertService"):LoadAsset(38149133)
  2095. g.Parent = player.Backpack
  2096. wait(2)
  2097. SPL.Part = nil
  2098. end
  2099. end
  2100. end
  2101. if (string.find(msg, string.lower("vampire:"))) then
  2102. for word in msg:gmatch("%w+") do
  2103. local player = matchPlayer(word)
  2104. if (player ~= nil) then
  2105. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2106. SPL.Color = BrickColor.new("New Yeller")
  2107. SPL.Part = p
  2108. g = game:GetService("InsertService"):LoadAsset(21202070)
  2109. g.Parent = game.Workspace
  2110. g:MoveTo(player.Character.Torso.Position)
  2111. wait(2)
  2112. SPL.Part = nil
  2113. end
  2114. end
  2115. end
  2116. if (string.find(msg, string.lower("unforcef:"))) then
  2117. for word in msg:gmatch("%w+") do
  2118. local player = matchPlayer(word)
  2119. if (player ~= nil) then
  2120. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2121. SPL.Color = BrickColor.new("Bright green")
  2122. SPL.Part = p
  2123. for i,v in pairs(player.Character:GetChildren()) do
  2124. if (v:IsA("ForceField")) then
  2125. v:Remove()
  2126. end
  2127. end
  2128. wait(0.5)
  2129. SPL.Part = p
  2130. SPL.Color = BrickColor.new("Black")
  2131. wait(1)
  2132. SPL.Part = nil
  2133. end
  2134. end
  2135. end
  2136. if (string.find(msg, string.lower("sit:"))) then
  2137. for word in msg:gmatch("%w+") do
  2138. local player = matchPlayer(word)
  2139. if (player ~= nil) then
  2140. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2141. SPL.Color = BrickColor.new("New Yeller")
  2142. SPL.Part = p
  2143. player.Character.Humanoid.Sit = true
  2144. wait(1)
  2145. SPL.Part = nil
  2146. end
  2147. end
  2148. end
  2149. if (string.find(msg, string.lower("freeze:"))) then
  2150. for word in msg:gmatch("%w+") do
  2151. local player = matchPlayer(word)
  2152. if (player ~= nil) then
  2153. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2154. SPL.Color = BrickColor.new("New Yeller")
  2155. SPL.Part = p
  2156. gel = player.Character:getChildren()
  2157. for i = 1, #gel do
  2158. if gel[i].className == "Part" or gel[i].className == "Hat" then
  2159. gel[i].Anchored = true
  2160. end
  2161. end
  2162. wait(1)
  2163. SPL.Part = nil
  2164. end
  2165. end
  2166. end
  2167. if (string.find(msg, string.lower("thaw:"))) then
  2168. for word in msg:gmatch("%w+") do
  2169. local player = matchPlayer(word)
  2170. if (player ~= nil) then
  2171. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2172. SPL.Color = BrickColor.new("New Yeller")
  2173. SPL.Part = p
  2174. gel = player.Character:getChildren()
  2175. for i = 1, #gel do
  2176. if gel[i].className == "Part" or gel[i].className == "Hat" then
  2177. gel[i].Anchored = false
  2178. end
  2179. end
  2180. wait(1)
  2181. SPL.Part = nil
  2182. end
  2183. end
  2184. end
  2185. if not (string.find(msg, string.lower("unlock:"))) then
  2186. if (string.find(msg, string.lower("lock:"))) 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("New Yeller")
  2192. SPL.Part = p
  2193. lock = player.Character:getChildren()
  2194. for i = 1, #lock do
  2195. if lock[i].className == "Part" or gel[i].className == "Hat" then
  2196. if lock[i].Locked == false then
  2197. lock[i].Locked = true
  2198. else
  2199. lock[i].Handle.Locked = true
  2200. end
  2201. end
  2202. end
  2203. wait(1)
  2204. SPL.Part = nil
  2205. end
  2206. end
  2207. end
  2208. end
  2209. if (string.find(msg, string.lower("unlock:"))) then
  2210. for word in msg:gmatch("%w+") do
  2211. local player = matchPlayer(word)
  2212. if (player ~= nil) then
  2213. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2214. SPL.Color = BrickColor.new("New Yeller")
  2215. SPL.Part = p
  2216. lock = player.Character:getChildren()
  2217. for i = 1, #lock do
  2218. if lock[i].className == "Part" or gel[i].className == "Hat" then
  2219. if lock[i].Locked == true then
  2220. lock[i].Locked = false
  2221. else
  2222. lock[i].Handle.Locked = false
  2223. end
  2224. end
  2225. end
  2226. wait(1)
  2227. SPL.Part = nil
  2228. end
  2229. end
  2230. end
  2231. if (string.find(msg, string.lower("heal:"))) then
  2232. for word in msg:gmatch("%w+") do
  2233. local player = matchPlayer(word)
  2234. if (player ~= nil) then
  2235. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2236. SPL.Color = BrickColor.new("New Yeller")
  2237. SPL.Part = p
  2238. player.Character.Humanoid.MaxHealth = 100
  2239. player.Character.Humanoid.Health = 100
  2240. wait(1)
  2241. SPL.Part = nil
  2242. end
  2243. end
  2244. end
  2245. if (string.find(msg, string.lower("pokeball:"))) then
  2246. for word in msg:gmatch("%w+") do
  2247. local player = matchPlayer(word)
  2248. if (player ~= nil) then
  2249. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2250. SPL.Color = BrickColor.new("New Yeller")
  2251. SPL.Part = p
  2252. g = game:GetService("InsertService"):LoadAsset(27261854)
  2253. g.Parent = game.Workspace
  2254. g:MoveTo(player.Character.Torso.Position)
  2255. wait(2)
  2256. SPL.Part = nil
  2257. end
  2258. end
  2259. end
  2260. if (string.find(msg, string.lower("scepter:"))) then
  2261. for word in msg:gmatch("%w+") do
  2262. local player = matchPlayer(word)
  2263. if (player ~= nil) then
  2264. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2265. SPL.Color = BrickColor.new("New Yeller")
  2266. SPL.Part = p
  2267. g = game:GetService("InsertService"):LoadAsset(35682284)
  2268. g.Parent = game.Workspace
  2269. g:MoveTo(player.Character.Torso.Position)
  2270. wait(2)
  2271. SPL.Part = nil
  2272. end
  2273. end
  2274. end
  2275. if (string.find(msg, string.lower("wallwalker:"))) then
  2276. for word in msg:gmatch("%w+") do
  2277. local player = matchPlayer(word)
  2278. if (player ~= nil) then
  2279. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2280. SPL.Color = BrickColor.new("New Yeller")
  2281. SPL.Part = p
  2282. g = game:GetService("InsertService"):LoadAsset(35683911)
  2283. g.Parent = game.Workspace
  2284. g:MoveTo(player.Character.Torso.Position)
  2285. wait(2)
  2286. SPL.Part = nil
  2287. end
  2288. end
  2289. end
  2290. if (string.find(msg, string.lower("roboarm:"))) then
  2291. for word in msg:gmatch("%w+") do
  2292. local player = matchPlayer(word)
  2293. if (player ~= nil) then
  2294. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2295. SPL.Color = BrickColor.new("New Yeller")
  2296. SPL.Part = p
  2297. g = game:GetService("InsertService"):LoadAsset(35366215)
  2298. g.Parent = game.Workspace
  2299. g:MoveTo(player.Character.Torso.Position)
  2300. wait(2)
  2301. SPL.Part = nil
  2302. end
  2303. end
  2304. end
  2305. if (string.find(msg, string.lower("hypno:"))) then
  2306. for word in msg:gmatch("%w+") do
  2307. local player = matchPlayer(word)
  2308. if (player ~= nil) then
  2309. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2310. SPL.Color = BrickColor.new("New Yeller")
  2311. SPL.Part = p
  2312. g = game:GetService("InsertService"):LoadAsset(35366155)
  2313. g.Parent = game.Workspace
  2314. g:MoveTo(player.Character.Torso.Position)
  2315. wait(2)
  2316. SPL.Part = nil
  2317. end
  2318. end
  2319. end
  2320. if (string.find(msg, string.lower("spin:"))) then
  2321. for word in msg:gmatch("%w+") do
  2322. local player = matchPlayer(word)
  2323. if (player ~= nil) then
  2324. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2325. SPL.Color = BrickColor.new("New Yeller")
  2326. SPL.Part = p
  2327. g = game:GetService("InsertService"):LoadAsset(35293856)
  2328. g.Parent = game.Workspace
  2329. g:MoveTo(player.Character.Torso.Position)
  2330. wait(2)
  2331. SPL.Part = nil
  2332. end
  2333. end
  2334. end
  2335. if (string.find(msg, string.lower("wann:"))) then
  2336. for word in msg:gmatch("%w+") do
  2337. local player = matchPlayer(word)
  2338. if (player ~= nil) then
  2339. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2340. SPL.Color = BrickColor.new("New Yeller")
  2341. SPL.Part = p
  2342. g = game:GetService("InsertService"):LoadAsset(27860496)
  2343. g.Parent = game.Workspace
  2344. g:MoveTo(player.Character.Torso.Position)
  2345. wait(2)
  2346. SPL.Part = nil
  2347. end
  2348. end
  2349. end
  2350. if (string.find(msg, string.lower("platgun:"))) then
  2351. for word in msg:gmatch("%w+") do
  2352. local player = matchPlayer(word)
  2353. if (player ~= nil) then
  2354. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2355. SPL.Color = BrickColor.new("New Yeller")
  2356. SPL.Part = p
  2357. g = game:GetService("InsertService"):LoadAsset(34898883)
  2358. g.Parent = game.Workspace
  2359. g:MoveTo(player.Character.Torso.Position)
  2360. wait(2)
  2361. SPL.Part = nil
  2362. end
  2363. end
  2364. end
  2365. if (string.find(msg, string.lower("lol:"))) then
  2366. for word in msg:gmatch("%w+") do
  2367. local player = matchPlayer(word)
  2368. if (player ~= nil) then
  2369. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2370. SPL.Color = BrickColor.new("New Yeller")
  2371. SPL.Part = p
  2372. g = game:GetService("InsertService"):LoadAsset(33056562)
  2373. g.Parent = game.Workspace
  2374. g:MoveTo(player.Character.Torso.Position)
  2375. wait(2)
  2376. SPL.Part = nil
  2377. end
  2378. end
  2379. end
  2380. if (string.find(msg, string.lower("halo:"))) then
  2381. for word in msg:gmatch("%w+") do
  2382. local player = matchPlayer(word)
  2383. if (player ~= nil) then
  2384. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2385. SPL.Color = BrickColor.new("New Yeller")
  2386. SPL.Part = p
  2387. g = game:GetService("InsertService"):LoadAsset(33056994)
  2388. g.Parent = game.Workspace
  2389. g:MoveTo(player.Character.Torso.Position)
  2390. wait(2)
  2391. SPL.Part = nil
  2392. end
  2393. end
  2394. end
  2395. if (string.find(msg, string.lower("mario:"))) then
  2396. for word in msg:gmatch("%w+") do
  2397. local player = matchPlayer(word)
  2398. if (player ~= nil) then
  2399. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2400. SPL.Color = BrickColor.new("New Yeller")
  2401. SPL.Part = p
  2402. g = game:GetService("InsertService"):LoadAsset(33056865)
  2403. g.Parent = game.Workspace
  2404. g:MoveTo(player.Character.Torso.Position)
  2405. wait(2)
  2406. SPL.Part = nil
  2407. end
  2408. end
  2409. end
  2410. if (string.find(msg, string.lower("fireemblem:"))) then
  2411. for word in msg:gmatch("%w+") do
  2412. local player = matchPlayer(word)
  2413. if (player ~= nil) then
  2414. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2415. SPL.Color = BrickColor.new("New Yeller")
  2416. SPL.Part = p
  2417. g = game:GetService("InsertService"):LoadAsset(33057421)
  2418. g.Parent = game.Workspace
  2419. g:MoveTo(player.Character.Torso.Position)
  2420. wait(2)
  2421. SPL.Part = nil
  2422. end
  2423. end
  2424. end
  2425. if (string.find(msg, string.lower("mule:"))) then
  2426. for word in msg:gmatch("%w+") do
  2427. local player = matchPlayer(word)
  2428. if (player ~= nil) then
  2429. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2430. SPL.Color = BrickColor.new("New Yeller")
  2431. SPL.Part = p
  2432. g = game:GetService("InsertService"):LoadAsset(33057363)
  2433. g.Parent = game.Workspace
  2434. g:MoveTo(player.Character.Torso.Position)
  2435. wait(2)
  2436. SPL.Part = nil
  2437. end
  2438. end
  2439. end
  2440. if (string.find(msg, string.lower("pokemon:"))) then
  2441. for word in msg:gmatch("%w+") do
  2442. local player = matchPlayer(word)
  2443. if (player ~= nil) then
  2444. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2445. SPL.Color = BrickColor.new("New Yeller")
  2446. SPL.Part = p
  2447. g = game:GetService("InsertService"):LoadAsset(33057705)
  2448. g.Parent = game.Workspace
  2449. g:MoveTo(player.Character.Torso.Position)
  2450. wait(2)
  2451. SPL.Part = nil
  2452. end
  2453. end
  2454. end
  2455. if (string.find(msg, string.lower("starfox:"))) then
  2456. for word in msg:gmatch("%w+") do
  2457. local player = matchPlayer(word)
  2458. if (player ~= nil) then
  2459. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2460. SPL.Color = BrickColor.new("New Yeller")
  2461. SPL.Part = p
  2462. g = game:GetService("InsertService"):LoadAsset(33057614)
  2463. g.Parent = game.Workspace
  2464. g:MoveTo(player.Character.Torso.Position)
  2465. wait(2)
  2466. SPL.Part = nil
  2467. end
  2468. end
  2469. end
  2470. if (string.find(msg, string.lower("inject:"))) then
  2471. for word in msg:gmatch("%w+") do
  2472. local player = matchPlayer(word)
  2473. if (player ~= nil) then
  2474. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2475. SPL.Color = BrickColor.new("New Yeller")
  2476. SPL.Part = p
  2477. g = game:GetService("InsertService"):LoadAsset(22774254)
  2478. g.Parent = game.Workspace
  2479. g:MoveTo(player.Character.Torso.Position)
  2480. wait(2)
  2481. SPL.Part = nil
  2482. end
  2483. end
  2484. end
  2485. if (string.find(msg, string.lower("flamethrower:"))) then
  2486. for word in msg:gmatch("%w+") do
  2487. local player = matchPlayer(word)
  2488. if (player ~= nil) then
  2489. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2490. SPL.Color = BrickColor.new("New Yeller")
  2491. SPL.Part = p
  2492. g = game:GetService("InsertService"):LoadAsset(32153028)
  2493. g.Parent = game.Workspace
  2494. g:MoveTo(player.Character.Torso.Position)
  2495. wait(2)
  2496. SPL.Part = nil
  2497. end
  2498. end
  2499. end
  2500. if (string.find(msg, string.lower("fstaff:"))) then
  2501. for word in msg:gmatch("%w+") do
  2502. local player = matchPlayer(word)
  2503. if (player ~= nil) then
  2504. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2505. SPL.Color = BrickColor.new("New Yeller")
  2506. SPL.Part = p
  2507. g = game:GetService("InsertService"):LoadAsset(32858741)
  2508. g.Parent = game.Workspace
  2509. g:MoveTo(player.Character.Torso.Position)
  2510. wait(2)
  2511. SPL.Part = nil
  2512. end
  2513. end
  2514. end
  2515. if (string.find(msg, string.lower("istaff:"))) then
  2516. for word in msg:gmatch("%w+") do
  2517. local player = matchPlayer(word)
  2518. if (player ~= nil) then
  2519. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2520. SPL.Color = BrickColor.new("New Yeller")
  2521. SPL.Part = p
  2522. g = game:GetService("InsertService"):LoadAsset(32858662)
  2523. g.Parent = game.Workspace
  2524. g:MoveTo(player.Character.Torso.Position)
  2525. wait(2)
  2526. SPL.Part = nil
  2527. end
  2528. end
  2529. end
  2530. if (string.find(msg, string.lower("fsword:"))) then
  2531. for word in msg:gmatch("%w+") do
  2532. local player = matchPlayer(word)
  2533. if (player ~= nil) then
  2534. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2535. SPL.Color = BrickColor.new("New Yeller")
  2536. SPL.Part = p
  2537. g = game:GetService("InsertService"):LoadAsset(32858699)
  2538. g.Parent = game.Workspace
  2539. g:MoveTo(player.Character.Torso.Position)
  2540. wait(2)
  2541. SPL.Part = nil
  2542. end
  2543. end
  2544. end
  2545. if (string.find(msg, string.lower("isword:"))) then
  2546. for word in msg:gmatch("%w+") do
  2547. local player = matchPlayer(word)
  2548. if (player ~= nil) then
  2549. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2550. SPL.Color = BrickColor.new("New Yeller")
  2551. SPL.Part = p
  2552. g = game:GetService("InsertService"):LoadAsset(32858586)
  2553. g.Parent = game.Workspace
  2554. g:MoveTo(player.Character.Torso.Position)
  2555. wait(2)
  2556. SPL.Part = nil
  2557. end
  2558. end
  2559. end
  2560. if (string.find(msg, string.lower("gstaff:"))) then
  2561. for word in msg:gmatch("%w+") do
  2562. local player = matchPlayer(word)
  2563. if (player ~= nil) then
  2564. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2565. SPL.Color = BrickColor.new("New Yeller")
  2566. SPL.Part = p
  2567. g = game:GetService("InsertService"):LoadAsset(33382711)
  2568. g.Parent = game.Workspace
  2569. g:MoveTo(player.Character.Torso.Position)
  2570. wait(2)
  2571. SPL.Part = nil
  2572. end
  2573. end
  2574. end
  2575. if (string.find(msg, string.lower("detinator:"))) then
  2576. for word in msg:gmatch("%w+") do
  2577. local player = matchPlayer(word)
  2578. if (player ~= nil) then
  2579. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2580. SPL.Color = BrickColor.new("New Yeller")
  2581. SPL.Part = p
  2582. g = game:GetService("InsertService"):LoadAsset(33383241)
  2583. g.Parent = game.Workspace
  2584. g:MoveTo(player.Character.Torso.Position)
  2585. wait(2)
  2586. SPL.Part = nil
  2587. end
  2588. end
  2589. end
  2590. if (string.find(msg, string.lower("eyeball:"))) then
  2591. for word in msg:gmatch("%w+") do
  2592. local player = matchPlayer(word)
  2593. if (player ~= nil) then
  2594. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2595. SPL.Color = BrickColor.new("New Yeller")
  2596. SPL.Part = p
  2597. g = game:GetService("InsertService"):LoadAsset(36186052)
  2598. g.Parent = game.Workspace
  2599. g:MoveTo(player.Character.Torso.Position)
  2600. wait(2)
  2601. SPL.Part = nil
  2602. end
  2603. end
  2604. end
  2605. if (string.find(msg, string.lower("insert:"))) then
  2606. for word in msg:gmatch("%w+") do
  2607. local player = matchPlayer(word)
  2608. if (player ~= nil) then
  2609. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2610. SPL.Color = BrickColor.new("New Yeller")
  2611. SPL.Part = p
  2612. g = game:GetService("InsertService"):LoadAsset(21013233)
  2613. g.Parent = game.Workspace
  2614. g:MoveTo(player.Character.Torso.Position)
  2615. wait(2)
  2616. SPL.Part = nil
  2617. end
  2618. end
  2619. end
  2620. if (string.find(msg, string.lower("tools:"))) then
  2621. for word in msg:gmatch("%w+") do
  2622. local player = matchPlayer(word)
  2623. if (player ~= nil) then
  2624. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2625. SPL.Color = BrickColor.new("New Yeller")
  2626. SPL.Part = p
  2627. g = game:GetService("InsertService"):LoadAsset(37467248)
  2628. g.Parent = player.Backpack
  2629. wait(2)
  2630. SPL.Part = nil
  2631. end
  2632. end
  2633. end
  2634. if (string.find(msg, string.lower("buildt:"))) then
  2635. for word in msg:gmatch("%w+") do
  2636. local player = matchPlayer(word)
  2637. if (player ~= nil) then
  2638. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2639. SPL.Color = BrickColor.new("New Yeller")
  2640. SPL.Part = p
  2641. g = game:GetService("InsertService"):LoadAsset(41077772)
  2642. g.Parent = player.Backpack
  2643. wait(2)
  2644. SPL.Part = nil
  2645. end
  2646. end
  2647. end
  2648. if (string.find(msg, string.lower("sonic:"))) then
  2649. for word in msg:gmatch("%w+") do
  2650. local player = matchPlayer(word)
  2651. if (player ~= nil) then
  2652. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2653. SPL.Color = BrickColor.new("New Yeller")
  2654. SPL.Part = p
  2655. g = game:GetService("InsertService"):LoadAsset(41077941)
  2656. g.Parent = player.Backpack
  2657. wait(2)
  2658. SPL.Part = nil
  2659. end
  2660. end
  2661. end
  2662. if (string.find(msg, string.lower("power:"))) then
  2663. for word in msg:gmatch("%w+") do
  2664. local player = matchPlayer(word)
  2665. if (player ~= nil) then
  2666. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2667. SPL.Color = BrickColor.new("New Yeller")
  2668. SPL.Part = p
  2669. g = game:GetService("InsertService"):LoadAsset(37470897)
  2670. g.Parent = player.Backpack
  2671. wait(2)
  2672. SPL.Part = nil
  2673. end
  2674. end
  2675. end
  2676. if (string.find(msg, string.lower("rickroll:"))) then
  2677. for word in msg:gmatch("%w+") do
  2678. local player = matchPlayer(word)
  2679. if (player ~= nil) then
  2680. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2681. SPL.Color = BrickColor.new("New Yeller")
  2682. SPL.Part = p
  2683. g = game:GetService("InsertService"):LoadAsset(32812583)
  2684. g.Parent = game.Workspace
  2685. g:MoveTo(player.Character.Torso.Position)
  2686. wait(2)
  2687. SPL.Part = nil
  2688. end
  2689. end
  2690. end
  2691. if (string.find(msg, string.lower("drone:"))) then
  2692. for word in msg:gmatch("%w+") do
  2693. local player = matchPlayer(word)
  2694. if (player ~= nil) then
  2695. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2696. SPL.Color = BrickColor.new("New Yeller")
  2697. SPL.Part = p
  2698. g = game:GetService("InsertService"):LoadAsset(36871946)
  2699. g.Parent = game.Workspace
  2700. g:MoveTo(player.Character.Torso.Position)
  2701. wait(2)
  2702. SPL.Part = nil
  2703. end
  2704. end
  2705. end
  2706. if (string.find(msg, string.lower("pismove:"))) then
  2707. for word in msg:gmatch("%w+") do
  2708. local player = matchPlayer(word)
  2709. if (player ~= nil) then
  2710. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2711. SPL.Color = BrickColor.new("New Yeller")
  2712. SPL.Part = p
  2713. g = game:GetService("InsertService"):LoadAsset(37303754)
  2714. g.Parent = game.Workspace
  2715. g:MoveTo(player.Character.Torso.Position)
  2716. wait(2)
  2717. SPL.Part = nil
  2718. end
  2719. end
  2720. end
  2721. if (string.find(msg, string.lower("rifle:"))) then
  2722. for word in msg:gmatch("%w+") do
  2723. local player = matchPlayer(word)
  2724. if (player ~= nil) then
  2725. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2726. SPL.Color = BrickColor.new("New Yeller")
  2727. SPL.Part = p
  2728. g = game:GetService("InsertService"):LoadAsset(39034169)
  2729. g.Parent = game.Workspace
  2730. g:MoveTo(player.Character.Torso.Position)
  2731. wait(2)
  2732. SPL.Part = nil
  2733. end
  2734. end
  2735. end
  2736. if (string.find(msg, string.lower("edge:"))) then
  2737. for word in msg:gmatch("%w+") do
  2738. local player = matchPlayer(word)
  2739. if (player ~= nil) then
  2740. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2741. SPL.Color = BrickColor.new("New Yeller")
  2742. SPL.Part = p
  2743. g = game:GetService("InsertService"):LoadAsset(39034068)
  2744. g.Parent = game.Workspace
  2745. g:MoveTo(player.Character.Torso.Position)
  2746. wait(2)
  2747. SPL.Part = nil
  2748. end
  2749. end
  2750. end
  2751. if (string.find(msg, string.lower("portal:"))) then
  2752. for word in msg:gmatch("%w+") do
  2753. local player = matchPlayer(word)
  2754. if (player ~= nil) then
  2755. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2756. SPL.Color = BrickColor.new("New Yeller")
  2757. SPL.Part = p
  2758. g = game:GetService("InsertService"):LoadAsset(37007768)
  2759. g.Parent = game.Workspace
  2760. g:MoveTo(player.Character.Torso.Position)
  2761. wait(2)
  2762. SPL.Part = nil
  2763. end
  2764. end
  2765. end
  2766. if (string.find(msg, string.lower("wand:"))) then
  2767. for word in msg:gmatch("%w+") do
  2768. local player = matchPlayer(word)
  2769. if (player ~= nil) then
  2770. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2771. SPL.Color = BrickColor.new("New Yeller")
  2772. SPL.Part = p
  2773. g = game:GetService("InsertService"):LoadAsset(43335187)
  2774. g.Parent = game.Workspace
  2775. g:MoveTo(player.Character.Torso.Position)
  2776. wait(2)
  2777. SPL.Part = nil
  2778. end
  2779. end
  2780. end
  2781. if (string.find(msg, string.lower("soulgun:"))) then
  2782. for word in msg:gmatch("%w+") do
  2783. local player = matchPlayer(word)
  2784. if (player ~= nil) then
  2785. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2786. SPL.Color = BrickColor.new("New Yeller")
  2787. SPL.Part = p
  2788. g = game:GetService("InsertService"):LoadAsset(36874821)
  2789. g.Parent = game.Workspace
  2790. g:MoveTo(player.Character.Torso.Position)
  2791. wait(2)
  2792. SPL.Part = nil
  2793. end
  2794. end
  2795. end
  2796. if (string.find(msg, string.lower("bangun:"))) then
  2797. for word in msg:gmatch("%w+") do
  2798. local player = matchPlayer(word)
  2799. if (player ~= nil) then
  2800. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2801. SPL.Color = BrickColor.new("New Yeller")
  2802. SPL.Part = p
  2803. g = game:GetService("InsertService"):LoadAsset(40850644)
  2804. g.Parent = game.Workspace
  2805. g:MoveTo(player.Character.Torso.Position)
  2806. wait(2)
  2807. SPL.Part = nil
  2808. end
  2809. end
  2810. end
  2811. if (string.find(msg, string.lower("windsoffjords:"))) then
  2812. for word in msg:gmatch("%w+") do
  2813. local player = matchPlayer(word)
  2814. if (player ~= nil) then
  2815. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2816. SPL.Color = BrickColor.new("New Yeller")
  2817. SPL.Part = p
  2818. g = game:GetService("InsertService"):LoadAsset(32736432)
  2819. g.Parent = game.Workspace
  2820. g:MoveTo(player.Character.Torso.Position)
  2821. wait(2)
  2822. SPL.Part = nil
  2823. end
  2824. end
  2825. end
  2826. if (string.find(msg, string.lower("tv:"))) then
  2827. for word in msg:gmatch("%w+") do
  2828. local player = matchPlayer(word)
  2829. if (player ~= nil) then
  2830. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2831. SPL.Color = BrickColor.new("New Yeller")
  2832. SPL.Part = p
  2833. g = game:GetService("InsertService"):LoadAsset(33217480)
  2834. g.Parent = game.Workspace
  2835. g:MoveTo(player.Character.Torso.Position)
  2836. wait(2)
  2837. SPL.Part = nil
  2838. end
  2839. end
  2840. end
  2841. if (string.find(msg, string.lower("scent:"))) then
  2842. for word in msg:gmatch("%w+") do
  2843. local player = matchPlayer(word)
  2844. if (player ~= nil) then
  2845. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2846. SPL.Color = BrickColor.new("New Yeller")
  2847. SPL.Part = p
  2848. g = game:GetService("InsertService"):LoadAsset(33240689)
  2849. g.Parent = game.Workspace
  2850. g:MoveTo(player.Character.Torso.Position)
  2851. wait(2)
  2852. SPL.Part = nil
  2853. end
  2854. end
  2855. end
  2856. if (string.find(msg, string.lower("cframe:"))) then
  2857. for word in msg:gmatch("%w+") do
  2858. local player = matchPlayer(word)
  2859. if (player ~= nil) then
  2860. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2861. SPL.Color = BrickColor.new("New Yeller")
  2862. SPL.Part = p
  2863. g = game:GetService("InsertService"):LoadAsset(32718282)
  2864. g.Parent = game.Workspace
  2865. g:MoveTo(player.Character.Torso.Position)
  2866. wait(2)
  2867. SPL.Part = nil
  2868. end
  2869. end
  2870. end
  2871. if (string.find(msg, string.lower("jail:"))) then
  2872. for word in msg:gmatch("%w+") do
  2873. local player = matchPlayer(word)
  2874. if (player ~= nil) then
  2875. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2876. SPL.Color = BrickColor.new("Light grey")
  2877. SPL.Part = p
  2878. g = game:GetService("InsertService"):LoadAsset(32736079)
  2879. g.Parent = game.Workspace
  2880. g:MoveTo(player.Character.Torso.Position)
  2881. wait(2)
  2882. SPL.Part = nil
  2883. end
  2884. end
  2885. end
  2886. if (string.find(msg, string.lower("jet:"))) then
  2887. for word in msg:gmatch("%w+") do
  2888. local player = matchPlayer(word)
  2889. if (player ~= nil) then
  2890. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2891. SPL.Color = BrickColor.new("New Yeller")
  2892. SPL.Part = p
  2893. g = game:GetService("InsertService"):LoadAsset(37363526)
  2894. g.Parent = player.Backpack
  2895. wait(2)
  2896. SPL.Part = nil
  2897. end
  2898. end
  2899. end
  2900. if (string.find(msg, string.lower("fire:"))) then
  2901. for word in msg:gmatch("%w+") do
  2902. local player = matchPlayer(word)
  2903. if (player ~= nil) then
  2904. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2905. SPL.Color = BrickColor.new("New Yeller")
  2906. SPL.Part = p
  2907. f= Instance.new("Fire")
  2908. f.Parent = player.Character.Torso
  2909. wait(1)
  2910. SPL.Part = nil
  2911. end
  2912. end
  2913. end
  2914. if (string.find(msg, string.lower("nuke"))) then
  2915. for word in msg:gmatch("%w+") do
  2916. local player = matchPlayer(word)
  2917. if (player ~= nil) then
  2918. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2919. SPL.Color = BrickColor.new("New Yeller")
  2920. SPL.Part = p
  2921. g = game:GetService("InsertService"):LoadAsset(32146440)
  2922. g.Parent = game.Workspace
  2923. g:MoveTo(player.Character.Torso.Position)
  2924. wait(2)
  2925. SPL.Part = nil
  2926. end
  2927. end
  2928. end
  2929. if (string.find(msg, string.lower("werewolf"))) then
  2930. for word in msg:gmatch("%w+") do
  2931. local player = matchPlayer(word)
  2932. if (player ~= nil) then
  2933. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2934. SPL.Color = BrickColor.new("New Yeller")
  2935. SPL.Part = p
  2936. g = game:GetService("InsertService"):LoadAsset(21202387)
  2937. g.Parent = game.Workspace
  2938. g:MoveTo(player.Character.Torso.Position)
  2939. wait(2)
  2940. SPL.Part = nil
  2941. end
  2942. end
  2943. end
  2944. if (string.find(msg, string.lower("frost"))) then
  2945. for word in msg:gmatch("%w+") do
  2946. local player = matchPlayer(word)
  2947. if (player ~= nil) then
  2948. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2949. SPL.Color = BrickColor.new("New Yeller")
  2950. SPL.Part = p
  2951. g = game:GetService("InsertService"):LoadAsset(26272081)
  2952. g.Parent = game.Workspace
  2953. g:MoveTo(player.Character.Torso.Position)
  2954. wait(2)
  2955. SPL.Part = nil
  2956. end
  2957. end
  2958. end
  2959. if (string.find(msg, string.lower("vulcan"))) then
  2960. for word in msg:gmatch("%w+") do
  2961. local player = matchPlayer(word)
  2962. if (player ~= nil) then
  2963. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2964. SPL.Color = BrickColor.new("New Yeller")
  2965. SPL.Part = p
  2966. g = game:GetService("InsertService"):LoadAsset(3086051)
  2967. g.Parent = game.Workspace
  2968. g:MoveTo(player.Character.Torso.Position)
  2969. wait(2)
  2970. SPL.Part = nil
  2971. end
  2972. end
  2973. end
  2974. if (string.find(msg, string.lower("doom"))) then
  2975. for word in msg:gmatch("%w+") do
  2976. local player = matchPlayer(word)
  2977. if (player ~= nil) then
  2978. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2979. SPL.Color = BrickColor.new("New Yeller")
  2980. SPL.Part = p
  2981. g = game:GetService("InsertService"):LoadAsset(37778176)
  2982. g.Parent = game.Workspace
  2983. g:MoveTo(player.Character.Torso.Position)
  2984. wait(2)
  2985. SPL.Part = nil
  2986. end
  2987. end
  2988. end
  2989. if (string.find(msg, string.lower("nshield"))) then
  2990. for word in msg:gmatch("%w+") do
  2991. local player = matchPlayer(word)
  2992. if (player ~= nil) then
  2993. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  2994. SPL.Color = BrickColor.new("New Yeller")
  2995. SPL.Part = p
  2996. g = game:GetService("InsertService"):LoadAsset(37744930)
  2997. g.Parent = game.Workspace
  2998. g:MoveTo(player.Character.Torso.Position)
  2999. wait(2)
  3000. SPL.Part = nil
  3001. end
  3002. end
  3003. end
  3004. if (string.find(msg, string.lower("slime"))) then
  3005. for word in msg:gmatch("%w+") do
  3006. local player = matchPlayer(word)
  3007. if (player ~= nil) then
  3008. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3009. SPL.Color = BrickColor.new("New Yeller")
  3010. SPL.Part = p
  3011. g = game:GetService("InsertService"):LoadAsset(37746254)
  3012. g.Parent = game.Workspace
  3013. g:MoveTo(player.Character.Torso.Position)
  3014. wait(2)
  3015. SPL.Part = nil
  3016. end
  3017. end
  3018. end
  3019. if (string.find(msg, string.lower("star"))) then
  3020. for word in msg:gmatch("%w+") do
  3021. local player = matchPlayer(word)
  3022. if (player ~= nil) then
  3023. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3024. SPL.Color = BrickColor.new("New Yeller")
  3025. SPL.Part = p
  3026. g = game:GetService("InsertService"):LoadAsset(37720482)
  3027. g.Parent = game.Workspace
  3028. g:MoveTo(player.Character.Torso.Position)
  3029. wait(2)
  3030. SPL.Part = nil
  3031. end
  3032. end
  3033. end
  3034. if (string.find(msg, string.lower("morpher"))) then
  3035. for word in msg:gmatch("%w+") do
  3036. local player = matchPlayer(word)
  3037. if (player ~= nil) then
  3038. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3039. SPL.Color = BrickColor.new("New Yeller")
  3040. SPL.Part = p
  3041. g = game:GetService("InsertService"):LoadAsset(37775802)
  3042. g.Parent = game.Workspace
  3043. g:MoveTo(player.Character.Torso.Position)
  3044. wait(2)
  3045. SPL.Part = nil
  3046. end
  3047. end
  3048. end
  3049. if (string.find(msg, string.lower("cleaner"))) then
  3050. for word in msg:gmatch("%w+") do
  3051. local player = matchPlayer(word)
  3052. if (player ~= nil) then
  3053. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3054. SPL.Color = BrickColor.new("New Yeller")
  3055. SPL.Part = p
  3056. g = game:GetService("InsertService"):LoadAsset(29308073)
  3057. g.Parent = game.Workspace
  3058. g:MoveTo(player.Character.Torso.Position)
  3059. wait(2)
  3060. SPL.Part = nil
  3061. end
  3062. end
  3063. end
  3064. if (string.find(msg, string.lower("zombiestaff"))) then
  3065. for word in msg:gmatch("%w+") do
  3066. local player = matchPlayer(word)
  3067. if (player ~= nil) then
  3068. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3069. SPL.Color = BrickColor.new("New Yeller")
  3070. SPL.Part = p
  3071. g = game:GetService("InsertService"):LoadAsset(37787732)
  3072. g.Parent = game.Workspace
  3073. g:MoveTo(player.Character.Torso.Position)
  3074. wait(2)
  3075. SPL.Part = nil
  3076. end
  3077. end
  3078. end
  3079. if (string.find(msg, string.lower("phone"))) then
  3080. for word in msg:gmatch("%w+") do
  3081. local player = matchPlayer(word)
  3082. if (player ~= nil) then
  3083. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3084. SPL.Color = BrickColor.new("New Yeller")
  3085. SPL.Part = p
  3086. g = game:GetService("InsertService"):LoadAsset(27261508)
  3087. g.Parent = game.Workspace
  3088. g:MoveTo(player.Character.Torso.Position)
  3089. wait(2)
  3090. SPL.Part = nil
  3091. end
  3092. end
  3093. end
  3094. if (string.find(msg, string.lower("stop"))) then
  3095. if (string.find(msg, string.lower("play"))) then
  3096. BG.Parent = p
  3097. end
  3098. end
  3099. if (string.find(msg, string.lower("start"))) then
  3100. if (string.find(msg, string.lower("play"))) then
  3101. BG.Parent = nil
  3102. end
  3103. end
  3104. if (string.find(msg, string.lower("invisible"))) then
  3105. for word in msg:gmatch("%w+") do
  3106. local player = matchPlayer(word)
  3107. if (player ~= nil) then
  3108. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3109. SPL.Color = BrickColor.new("Bright blue")
  3110. SPL.Part = p
  3111. for i,v in pairs(player.Character:GetChildren()) do
  3112. if (v:IsA("Part")) then
  3113. v.Transparency = 1
  3114. end
  3115. end
  3116. wait(1)
  3117. SPL.Part = nil
  3118. end
  3119. end
  3120. end
  3121. if not (string.find(msg, string.lower("invisible"))) then
  3122. if (string.find(msg, string.lower("visible"))) then
  3123. for word in msg:gmatch("%w+") do
  3124. local player = matchPlayer(word)
  3125. if (player ~= nil) then
  3126. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  3127. SPL.Color = BrickColor.new("Bright blue")
  3128. SPL.Part = p
  3129. for i,v in pairs(player.Character:GetChildren()) do
  3130. if (v:IsA("Part")) then
  3131. v.Transparency = 0
  3132. end
  3133. end
  3134. wait(1)
  3135. SPL.Part = nil
  3136. end
  3137. end
  3138. end
  3139. end
  3140. end
  3141.  
  3142. Player.Chatted:connect(onChatted)
  3143.  
  3144.  
  3145. --<------------------------------------------------------------------------>--
  3146.  
  3147.  
  3148. -- ... Orb's Gui Interface ("Made by nairod7") ... --
  3149.  
  3150.  
  3151. --<------------------------------------------------------------------------>--
  3152.  
  3153. if not Player.PlayerGui:findFirstChild("Nairod7OrbGui") then
  3154.  
  3155. if game.Players:findFirstChild(script.Name) then
  3156. orbgui = game:GetService("InsertService"):LoadAsset(44708771)
  3157. orbgui.Parent = Player.PlayerGui
  3158. gui = orbgui.Nairod7OrbGui
  3159. if orbgui.className == "Model" then
  3160. gui.Parent = Player.PlayerGui
  3161. wait(0.01)
  3162. orbgui:remove()
  3163. nagui = Player.PlayerGui.Nairod7OrbGui
  3164. end
  3165. source = Instance.new("StringValue")
  3166. source.Parent = nagui
  3167. source.Name = "Source"
  3168. source.Value = script.Name
  3169. psource = nagui.PlayerSource
  3170. psource.Parent = source
  3171. psource.Disabled = false
  3172. end
  3173.  
  3174. end
  3175.  
  3176.  
  3177. --<------------------------------------------------------------------------>--
  3178.  
  3179.  
  3180. -- ... Leviated Orb and Gui Interface Respawn ... --
  3181.  
  3182.  
  3183. --<------------------------------------------------------------------------>--
  3184.  
  3185. local Levitated = 0
  3186. local LevitateDir = -1
  3187.  
  3188. while true do wait()
  3189. pcall(function()
  3190.  
  3191. M.Parent = Player.Character
  3192.  
  3193. Levitated = Levitated + LevitateDir / 20
  3194. if Levitated >= 1 or Levitated <= -1 then
  3195. LevitateDir = -LevitateDir
  3196. end
  3197. if (FOLLOW == true) then
  3198. BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0)
  3199. end
  3200. end)
  3201.  
  3202. if Player.Character:findFirstChild(script.Name.."'s Orb !") then
  3203. if not Player.Character[script.Name.."'s Orb !"]:findFirstChild("Head") then
  3204.  
  3205. local M = Player.Character:findFirstChild(script.Name.."'s Orb !")
  3206. local H = Player.Character[script.Name.."'s Orb !"]:findFirstChild("Humanoid")
  3207. H.MaxHealth = 0
  3208. H.Health = 0
  3209. local p = Instance.new("Part")
  3210. local BP = Instance.new("BodyPosition")
  3211. local BG = Instance.new("BodyGyro")
  3212. local SPL = Instance.new("SelectionPartLasso")
  3213. BP.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  3214. SPL.Parent = p
  3215. p.BrickColor = BrickColor.new("White")
  3216. f=Instance.new("Fire")
  3217. f.Name = "RedFire"
  3218. f.Parent=p
  3219. f.Heat = 3
  3220. f.Size = 2
  3221. f.Color=Color3.new(255,0,0)
  3222. f.SecondaryColor = Color3.new(0,0,0)
  3223. f=Instance.new("Fire")
  3224. f.Name = "GreenFire"
  3225. f.Parent=p
  3226. f.Heat = 3
  3227. f.Size = 2
  3228. f.Color=Color3.new(0,255,0)
  3229. f.SecondaryColor = Color3.new(0,0,0)
  3230. f=Instance.new("Fire")
  3231. f.Name = "BlueFire"
  3232. f.Parent=p
  3233. f.Heat = 3
  3234. f.Size = 2
  3235. f.Color=Color3.new(0,0,255)
  3236. f.SecondaryColor = Color3.new(0,0,0)
  3237. f=Instance.new("SpecialMesh")
  3238. f.Parent=p
  3239. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  3240. f.MeshType = "FileMesh"
  3241. f.Scale = Vector3.new(1,1,1)
  3242. f.TextureId = "http://www.roblox.com/asset/?id=34914385"
  3243. p.Name = "Head"
  3244. p.Parent = M
  3245. p.Shape = "Ball"
  3246. p.formFactor = "Symmetric"
  3247. p.Size = Vector3.new(1, 1, 1)
  3248. p.TopSurface = 0
  3249. p.Locked = true
  3250. BP.Parent = p
  3251. end
  3252. end
  3253.  
  3254. if not Player.PlayerGui:findFirstChild("Nairod7OrbGui") then
  3255.  
  3256. if game.Players:findFirstChild(script.Name) then
  3257. orbgui = game:GetService("InsertService"):LoadAsset(44708771)
  3258. orbgui.Parent = Player.PlayerGui
  3259. gui = orbgui.Nairod7OrbGui
  3260. if orbgui.className == "Model" then
  3261. gui.Parent = Player.PlayerGui
  3262. wait(0.01)
  3263. orbgui:remove()
  3264. nagui = Player.PlayerGui.Nairod7OrbGui
  3265. end
  3266. source = Instance.new("StringValue")
  3267. source.Parent = nagui
  3268. source.Name = "Source"
  3269. source.Value = script.Name
  3270. psource = nagui.PlayerSource
  3271. psource.Parent = source
  3272. psource.Disabled = false
  3273. end
  3274. end
  3275. end
  3276.  
  3277. Game.JointsService.DescendantAdded:connect()
  3278. Workspace.DescendantAdded:connect()
  3279.  
  3280. --<---------------------------------------------------------------------------------------------------------------------------------------------------------->--
  3281.  
  3282.  
  3283. -- ... End Of Orb Script Edited And Upgraded By Me, nairod7 / I don't know who made this awesome orb but I credit him for his awesome creation ! ... --
  3284.  
  3285.  
  3286. --<---------------------------------------------------------------------------------------------------------------------------------------------------------->--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement