EeveeFromV3rmillion

Untitled

Jun 30th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.75 KB | None | 0 0
  1. local Settings={["Un_Removable"]= "On"}
  2. local function mFloor(x) return x - x % 1 end
  3. local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on"
  4. if Un_Removable then
  5. Game.Workspace.DescendantRemoving:connect(function(Child)
  6. if not Remove_At_Will and Child == script then
  7. script:Clone().Parent = Game.Workspace
  8. end
  9. end)
  10. end
  11.  
  12. local Owners = "Killbook"
  13. local Player = game.Players:findFirstChild(Owners)
  14.  
  15. --[[
  16.  
  17. Informations :
  18.  
  19. You can change the name of your orb in line 84 and change the owners to the orb in line 12
  20. Say orb, the command and name for example : orb, kill na ( na = nairod7 )
  21.  
  22. assasin
  23. pistol playername
  24. sword playername
  25. drone playername
  26. wand playername
  27. kill playername
  28. find playername
  29. ff playername
  30. unff playername
  31. admin playername ( you need change the id in line 733 by your admin command id ! )
  32. claws playername
  33. skull playername
  34. rocket playername
  35. clear playername
  36. vampire playername
  37. pokeball playername
  38. insert playername
  39. eyeball playername
  40. invisible playername
  41. visible playername
  42. power playername
  43. rickroll playername
  44. kick playername
  45. ban playername
  46. detinator playername
  47. fstaff playername
  48. istaff playername
  49. gstaff playername
  50. fsword playername
  51. isword playername
  52. clear playername
  53. mdebug playername ( remove message )
  54. flamethrower playername
  55. shutdown playername ( shutdown the server )
  56. fire playername
  57. green fire playername
  58. white playername
  59. suit playername ( you have tool with him )
  60. tele playername ( teleport yourself from a other player )
  61.  
  62. apparence command :
  63.  
  64. builderman playername
  65. telamon playername
  66. matt playername
  67. guest playername
  68. girly playername
  69. ducc playername
  70. sweed playername
  71. wierdo playername
  72. gear playername
  73. police playername
  74. madly playername
  75. ana playername
  76. masashi playername
  77.  
  78. ]]--
  79. local RISE = 5
  80. local FOLLOW = true
  81. local M = Instance.new("Model")
  82. local H = Instance.new("Humanoid")
  83. M.Parent = Player.Character
  84. H.Parent = M
  85. H.MaxHealth = 0
  86. H.Health = 0
  87. M.Name = "Orb V6 !"
  88. local p = Instance.new("Part")
  89. local BP = Instance.new("BodyPosition")
  90. local BG = Instance.new("BodyGyro")
  91. local SPL = Instance.new("SelectionPartLasso")
  92. BP.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  93. SPL.Parent = p
  94. p.BrickColor = BrickColor.new("Really red")
  95. f=Instance.new("Fire")
  96. f.Parent=p
  97. f.Heat = 0
  98. f.Size = 2.5
  99. f.Color=Color3.new(255,0,0)
  100. f.SecondaryColor = Color3.new(0,0,0)
  101. f=Instance.new("Fire")
  102. f.Parent=p
  103. f.Heat = 0
  104. f.Size = 2.5
  105. f.Color=Color3.new(0,255,0)
  106. f.SecondaryColor = Color3.new(0,0,0)
  107. f=Instance.new("Fire")
  108. f.Parent=p
  109. f.Heat = 0
  110. f.Size = 2.5
  111. f.Color=Color3.new(0,0,255)
  112. f.SecondaryColor = Color3.new(0,0,0)
  113. f=Instance.new("SpecialMesh")
  114. f.Parent=p
  115. f.MeshId = "http://www.roblox.com/asset/?id=34795798"
  116. f.MeshType = "FileMesh"
  117. f.Scale = Vector3.new(1.3,1.3,1.3)
  118. f.TextureId = "http://www.roblox.com/asset/?id=34795697"
  119. p.Name = "Head"
  120. p.Parent = M
  121. p.Shape = "Ball"
  122. p.formFactor = "Symmetric"
  123. p.Size = Vector3.new(1, 1, 1)
  124. p.TopSurface = 0
  125. p.BottomSurface = 0
  126. BP.Parent = p
  127.  
  128. function matchPlayer(str)
  129. local result = nil
  130. local players = game.Players:GetPlayers()
  131. for i,v in pairs(game.Players:GetPlayers()) do
  132. if (string.find(string.lower(v.Name), str) == 1) then
  133. if (result ~= nil) then return nil end
  134. result = v
  135. end
  136. end
  137. return result
  138. end
  139.  
  140.  
  141.  
  142. function onChatted(msg)
  143.  
  144. if (string.sub(msg, 1, 4) == "orb,") then
  145. if (string.find(msg, string.lower("reset"))) then
  146. for word in msg:gmatch("%w+") do
  147. local player = matchPlayer(word)
  148. if (player ~= nil) then
  149. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  150. SPL.Color = BrickColor.new("Bright red")
  151. SPL.Part = p
  152. player.Character:BreakJoints()
  153. wait(1)
  154. SPL.Part = nil
  155. end
  156. end
  157. end
  158. if not (string.find(msg, string.lower("loopkill"))) then
  159. if (string.find(msg, string.lower("kill"))) then
  160. for word in msg:gmatch("%w+") do
  161. local player = matchPlayer(word)
  162. if (player ~= nil) then
  163. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  164. SPL.Color = BrickColor.new("Bright red")
  165. SPL.Part = p
  166. player.Character:BreakJoints()
  167. wait(1)
  168. SPL.Part = nil
  169. end
  170. end
  171. end
  172. end
  173. if (string.find(msg, string.lower("find"))) then
  174. for word in msg:gmatch("%w+") do
  175. local player = matchPlayer(word)
  176. if (player ~= nil) then
  177. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  178. SPL.Color = BrickColor.new("White")
  179. SPL.Part = p
  180. wait(2)
  181. SPL.Part = nil
  182. end
  183. end
  184. end
  185. if (string.find(msg, string.lower("tele"))) then
  186. for word in msg:gmatch("%w+") do
  187. local player = matchPlayer(word)
  188. if (player ~= nil) then
  189. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  190. SPL.Color = BrickColor.new("Bright blue")
  191. SPL.Part = p
  192. Player.Character.Torso.CFrame = player.Character.Torso.CFrame
  193. wait(1)
  194. SPL.Part = nil
  195. end
  196. end
  197. end
  198. if (string.find(msg, string.lower("trans"))) then
  199. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  200. if (number ~= nil) then
  201. p.Transparency = tonumber(number)
  202. end
  203. end
  204. if (string.find(msg, string.lower("size"))) then
  205. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  206. if (number ~= nil) then
  207. p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
  208. end
  209. end
  210. if (string.find(msg, string.lower("loopkill"))) then
  211. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  212. if (number ~= nil) then
  213. for word in msg:gmatch("%w+") do
  214. local player = matchPlayer(word)
  215. if (player ~= nil) then
  216. K = 0
  217. repeat
  218. if (player.Character:findFirstChild("Humanoid").Health > 0) then
  219. wait()
  220. if (player.Character:findFirstChild("Torso") ~= nil) then
  221. wait()
  222. if (player.Character ~= nil) then
  223. wait()
  224. K = K + 1
  225. player.Character:BreakJoints()
  226. end
  227. end
  228. end
  229. wait()
  230. until tonumber(K) == tonumber(number)
  231. K = 0
  232. end
  233. end
  234. end
  235. end
  236. if (string.find(msg, string.lower("rise"))) then
  237. local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
  238. if (number ~= nil) then
  239. RISE = tostring(number + 5)
  240. end
  241. end
  242. if not (string.find(msg, string.lower("unff"))) then
  243. if (string.find(msg, string.lower("ff"))) then
  244. for word in msg:gmatch("%w+") do
  245. local player = matchPlayer(word)
  246. if (player ~= nil) then
  247. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  248. SPL.Color = BrickColor.new("Bright green")
  249. SPL.Part = p
  250. ff = Instance.new("ForceField")
  251. ff.Parent = player.Character
  252. wait(1)
  253. SPL.Part = nil
  254. end
  255. end
  256. end
  257. end
  258. if (string.find(msg, string.lower("skull"))) then
  259. for word in msg:gmatch("%w+") do
  260. local player = matchPlayer(word)
  261. if (player ~= nil) then
  262. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  263. SPL.Color = BrickColor.new("New Yeller")
  264. SPL.Part = p
  265. g = game:GetService("InsertService"):LoadAsset(33305967)
  266. g.Parent = game.Workspace
  267. g:MoveTo(player.Character.Torso.Position)
  268. wait(2)
  269. SPL.Part = nil
  270. end
  271. end
  272. end
  273. if (string.find(msg, string.lower("claws"))) then
  274. for word in msg:gmatch("%w+") do
  275. local player = matchPlayer(word)
  276. if (player ~= nil) then
  277. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  278. SPL.Color = BrickColor.new("New Yeller")
  279. SPL.Part = p
  280. g = game:GetService("InsertService"):LoadAsset(30822045)
  281. g.Parent = game.Workspace
  282. g:MoveTo(player.Character.Torso.Position)
  283. wait(2)
  284. SPL.Part = nil
  285. end
  286. end
  287. end
  288. if (string.find(msg, string.lower("rocket"))) then
  289. for word in msg:gmatch("%w+") do
  290. local player = matchPlayer(word)
  291. if (player ~= nil) then
  292. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  293. SPL.Color = BrickColor.new("New Yeller")
  294. SPL.Part = p
  295. g = game:GetService("InsertService"):LoadAsset(3675058)
  296. g.Parent = game.Workspace
  297. g:MoveTo(player.Character.Torso.Position)
  298. wait(2)
  299. SPL.Part = nil
  300. end
  301. end
  302. end
  303. if (string.find(msg, string.lower("clear"))) then
  304. for word in msg:gmatch("%w+") do
  305. local player = matchPlayer(word)
  306. if (player ~= nil) then
  307. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  308. SPL.Color = BrickColor.new("New Yeller")
  309. SPL.Part = p
  310. local w=game.Workspace:GetChildren()
  311. for i=1,#w do
  312. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) then
  313. w[i]:Remove()
  314. end
  315. end
  316. local Base=Instance.new("Part",game.Workspace)
  317. Base.Name="Base"
  318. Base.Size=Vector3.new(600,1,600)
  319. Base.BrickColor=BrickColor.new("Earth green")
  320. Base.Anchored=true
  321. Base.Locked=true
  322. Base.TopSurface="Universal"
  323. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  324. end
  325. wait(2)
  326. SPL.Part = nil
  327. end
  328. end
  329. end
  330. if (string.find(msg, string.lower("vampire"))) then
  331. for word in msg:gmatch("%w+") do
  332. local player = matchPlayer(word)
  333. if (player ~= nil) then
  334. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  335. SPL.Color = BrickColor.new("New Yeller")
  336. SPL.Part = p
  337. g = game:GetService("InsertService"):LoadAsset(21202070)
  338. g.Parent = game.Workspace
  339. g:MoveTo(player.Character.Torso.Position)
  340. wait(2)
  341. SPL.Part = nil
  342. end
  343. end
  344. end
  345. if (string.find(msg, string.lower("unff"))) then
  346. for word in msg:gmatch("%w+") do
  347. local player = matchPlayer(word)
  348. if (player ~= nil) then
  349. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  350. SPL.Color = BrickColor.new("Bright green")
  351. SPL.Part = p
  352. for i,v in pairs(player.Character:GetChildren()) do
  353. if (v:IsA("ForceField")) then
  354. v:Remove()
  355. end
  356. end
  357. wait(0.5)
  358. SPL.Part = p
  359. SPL.Color = BrickColor.new("Black")
  360. wait(1)
  361. SPL.Part = nil
  362. end
  363. end
  364. end
  365. if (string.find(msg, string.lower("wierdo"))) then
  366. for word in msg:gmatch("%w+") do
  367. local player = matchPlayer(word)
  368. if (player ~= nil) then
  369. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  370. SPL.Color = BrickColor.new("Really black")
  371. SPL.Part = p
  372. player.Character:BreakJoints()
  373. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846"
  374. end
  375. end
  376. end
  377. if (string.find(msg, string.lower("telamon"))) then
  378. for word in msg:gmatch("%w+") do
  379. local player = matchPlayer(word)
  380. if (player ~= nil) then
  381. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  382. SPL.Color = BrickColor.new("Really black")
  383. SPL.Part = p
  384. player.Character:BreakJoints()
  385. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261"
  386. end
  387. end
  388. end
  389. if (string.find(msg, string.lower("ducc"))) then
  390. for word in msg:gmatch("%w+") do
  391. local player = matchPlayer(word)
  392. if (player ~= nil) then
  393. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  394. SPL.Color = BrickColor.new("Really black")
  395. SPL.Part = p
  396. player.Character:BreakJoints()
  397. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693"
  398. end
  399. end
  400. end
  401. if (string.find(msg, string.lower("sweed"))) then
  402. for word in msg:gmatch("%w+") do
  403. local player = matchPlayer(word)
  404. if (player ~= nil) then
  405. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  406. SPL.Color = BrickColor.new("Really black")
  407. SPL.Part = p
  408. player.Character:BreakJoints()
  409. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560"
  410. end
  411. end
  412. end
  413. if (string.find(msg, string.lower("girly"))) then
  414. for word in msg:gmatch("%w+") do
  415. local player = matchPlayer(word)
  416. if (player ~= nil) then
  417. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  418. SPL.Color = BrickColor.new("Really black")
  419. SPL.Part = p
  420. player.Character:BreakJoints()
  421. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994"
  422. end
  423. end
  424. end
  425. if (string.find(msg, string.lower("masashi"))) then
  426. for word in msg:gmatch("%w+") do
  427. local player = matchPlayer(word)
  428. if (player ~= nil) then
  429. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  430. SPL.Color = BrickColor.new("Really black")
  431. SPL.Part = p
  432. player.Character:BreakJoints()
  433. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894"
  434. end
  435. end
  436. end
  437. if (string.find(msg, string.lower("madly"))) then
  438. for word in msg:gmatch("%w+") do
  439. local player = matchPlayer(word)
  440. if (player ~= nil) then
  441. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  442. SPL.Color = BrickColor.new("Really black")
  443. SPL.Part = p
  444. player.Character:BreakJoints()
  445. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286"
  446. end
  447. end
  448. end
  449. if (string.find(msg, string.lower("ana"))) then
  450. for word in msg:gmatch("%w+") do
  451. local player = matchPlayer(word)
  452. if (player ~= nil) then
  453. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  454. SPL.Color = BrickColor.new("Really black")
  455. SPL.Part = p
  456. player.Character:BreakJoints()
  457. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201"
  458. end
  459. end
  460. end
  461. if (string.find(msg, string.lower("police"))) then
  462. for word in msg:gmatch("%w+") do
  463. local player = matchPlayer(word)
  464. if (player ~= nil) then
  465. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  466. SPL.Color = BrickColor.new("Really black")
  467. SPL.Part = p
  468. player.Character:BreakJoints()
  469. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663"
  470. end
  471. end
  472. end
  473. if (string.find(msg, string.lower("gear"))) then
  474. for word in msg:gmatch("%w+") do
  475. local player = matchPlayer(word)
  476. if (player ~= nil) then
  477. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  478. SPL.Color = BrickColor.new("Really black")
  479. SPL.Part = p
  480. player.Character:BreakJoints()
  481. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566"
  482. end
  483. end
  484. end
  485. if (string.find(msg, string.lower("builderman"))) then
  486. for word in msg:gmatch("%w+") do
  487. local player = matchPlayer(word)
  488. if (player ~= nil) then
  489. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  490. SPL.Color = BrickColor.new("Really black")
  491. SPL.Part = p
  492. player.Character:BreakJoints()
  493. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
  494. end
  495. end
  496. end
  497. if (string.find(msg, string.lower("guest"))) then
  498. for word in msg:gmatch("%w+") do
  499. local player = matchPlayer(word)
  500. if (player ~= nil) then
  501. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  502. SPL.Color = BrickColor.new("Really black")
  503. SPL.Part = p
  504. player.Character:BreakJoints()
  505. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  506. end
  507. end
  508. end
  509. if (string.find(msg, string.lower("stickmaster"))) then
  510. for word in msg:gmatch("%w+") do
  511. local player = matchPlayer(word)
  512. if (player ~= nil) then
  513. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  514. SPL.Color = BrickColor.new("Really black")
  515. SPL.Part = p
  516. player.Character:BreakJoints()
  517. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254"
  518. end
  519. end
  520. end
  521. if (string.find(msg, string.lower("matt"))) then
  522. for word in msg:gmatch("%w+") do
  523. local player = matchPlayer(word)
  524. if (player ~= nil) then
  525. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  526. SPL.Color = BrickColor.new("Really black")
  527. SPL.Part = p
  528. player.Character:BreakJoints()
  529. player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916"
  530. end
  531. end
  532. end
  533. if (string.find(msg, string.lower("pokeball"))) then
  534. for word in msg:gmatch("%w+") do
  535. local player = matchPlayer(word)
  536. if (player ~= nil) then
  537. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  538. SPL.Color = BrickColor.new("New Yeller")
  539. SPL.Part = p
  540. g = game:GetService("InsertService"):LoadAsset(27261854)
  541. g.Parent = game.Workspace
  542. g:MoveTo(player.Character.Torso.Position)
  543. wait(2)
  544. SPL.Part = nil
  545. end
  546. end
  547. end
  548. if (string.find(msg, string.lower("flamethrower"))) then
  549. for word in msg:gmatch("%w+") do
  550. local player = matchPlayer(word)
  551. if (player ~= nil) then
  552. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  553. SPL.Color = BrickColor.new("New Yeller")
  554. SPL.Part = p
  555. g = game:GetService("InsertService"):LoadAsset(32153028)
  556. g.Parent = game.Workspace
  557. g:MoveTo(player.Character.Torso.Position)
  558. wait(2)
  559. SPL.Part = nil
  560. end
  561. end
  562. end
  563. if (string.find(msg, string.lower("fstaff"))) then
  564. for word in msg:gmatch("%w+") do
  565. local player = matchPlayer(word)
  566. if (player ~= nil) then
  567. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  568. SPL.Color = BrickColor.new("New Yeller")
  569. SPL.Part = p
  570. g = game:GetService("InsertService"):LoadAsset(32858741)
  571. g.Parent = game.Workspace
  572. g:MoveTo(player.Character.Torso.Position)
  573. wait(2)
  574. SPL.Part = nil
  575. end
  576. end
  577. end
  578. if (string.find(msg, string.lower("istaff"))) then
  579. for word in msg:gmatch("%w+") do
  580. local player = matchPlayer(word)
  581. if (player ~= nil) then
  582. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  583. SPL.Color = BrickColor.new("New Yeller")
  584. SPL.Part = p
  585. g = game:GetService("InsertService"):LoadAsset(32858662)
  586. g.Parent = game.Workspace
  587. g:MoveTo(player.Character.Torso.Position)
  588. wait(2)
  589. SPL.Part = nil
  590. end
  591. end
  592. end
  593. if (string.find(msg, string.lower("fsword"))) then
  594. for word in msg:gmatch("%w+") do
  595. local player = matchPlayer(word)
  596. if (player ~= nil) then
  597. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  598. SPL.Color = BrickColor.new("New Yeller")
  599. SPL.Part = p
  600. g = game:GetService("InsertService"):LoadAsset(32858699)
  601. g.Parent = game.Workspace
  602. g:MoveTo(player.Character.Torso.Position)
  603. wait(2)
  604. SPL.Part = nil
  605. end
  606. end
  607. end
  608. if (string.find(msg, string.lower("isword"))) then
  609. for word in msg:gmatch("%w+") do
  610. local player = matchPlayer(word)
  611. if (player ~= nil) then
  612. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  613. SPL.Color = BrickColor.new("New Yeller")
  614. SPL.Part = p
  615. g = game:GetService("InsertService"):LoadAsset(32858586)
  616. g.Parent = game.Workspace
  617. g:MoveTo(player.Character.Torso.Position)
  618. wait(2)
  619. SPL.Part = nil
  620. end
  621. end
  622. end
  623. if (string.find(msg, string.lower("gstaff"))) then
  624. for word in msg:gmatch("%w+") do
  625. local player = matchPlayer(word)
  626. if (player ~= nil) then
  627. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  628. SPL.Color = BrickColor.new("New Yeller")
  629. SPL.Part = p
  630. g = game:GetService("InsertService"):LoadAsset(33382711)
  631. g.Parent = game.Workspace
  632. g:MoveTo(player.Character.Torso.Position)
  633. wait(2)
  634. SPL.Part = nil
  635. end
  636. end
  637. end
  638. if (string.find(msg, string.lower("detinator"))) then
  639. for word in msg:gmatch("%w+") do
  640. local player = matchPlayer(word)
  641. if (player ~= nil) then
  642. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  643. SPL.Color = BrickColor.new("New Yeller")
  644. SPL.Part = p
  645. g = game:GetService("InsertService"):LoadAsset(33383241)
  646. g.Parent = game.Workspace
  647. g:MoveTo(player.Character.Torso.Position)
  648. wait(2)
  649. SPL.Part = nil
  650. end
  651. end
  652. end
  653. if (string.find(msg, string.lower("mdebug"))) then
  654. for word in msg:gmatch("%w+") do
  655. local player = matchPlayer(word)
  656. if (player ~= nil) then
  657. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  658. SPL.Color = BrickColor.new("New Yeller")
  659. SPL.Part = p
  660. local dbg = game.Workspace:getChildren()
  661. for i=1,#dbg do
  662. if dbg[i].className == "Hint" or dbg[i].className == "Message" then
  663. dbg[i]:remove()
  664. end
  665. end
  666. wait(2)
  667. SPL.Part = nil
  668. end
  669. end
  670. end
  671. if (string.find(msg, string.lower("eyeball"))) then
  672. for word in msg:gmatch("%w+") do
  673. local player = matchPlayer(word)
  674. if (player ~= nil) then
  675. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  676. SPL.Color = BrickColor.new("New Yeller")
  677. SPL.Part = p
  678. g = game:GetService("InsertService"):LoadAsset(36186052)
  679. g.Parent = game.Workspace
  680. g:MoveTo(player.Character.Torso.Position)
  681. wait(2)
  682. SPL.Part = nil
  683. end
  684. end
  685. end
  686. if (string.find(msg, string.lower("insert"))) then
  687. for word in msg:gmatch("%w+") do
  688. local player = matchPlayer(word)
  689. if (player ~= nil) then
  690. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  691. SPL.Color = BrickColor.new("New Yeller")
  692. SPL.Part = p
  693. g = game:GetService("InsertService"):LoadAsset(21013233)
  694. g.Parent = game.Workspace
  695. g:MoveTo(player.Character.Torso.Position)
  696. wait(2)
  697. SPL.Part = nil
  698. end
  699. end
  700. end
  701. if (string.find(msg, string.lower("admin"))) then
  702. for word in msg:gmatch("%w+") do
  703. local player = matchPlayer(word)
  704. if (player ~= nil) then
  705. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  706. SPL.Color = BrickColor.new("New Yeller")
  707. SPL.Part = p
  708. g = game:GetService("InsertService"):LoadAsset(36921490)
  709. g.Parent = game.Workspace
  710. wait(2)
  711. SPL.Part = nil
  712. end
  713. end
  714. end
  715. if (string.find(msg, string.lower("power"))) then
  716. for word in msg:gmatch("%w+") do
  717. local player = matchPlayer(word)
  718. if (player ~= nil) then
  719. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  720. SPL.Color = BrickColor.new("New Yeller")
  721. SPL.Part = p
  722. g = game:GetService("InsertService"):LoadAsset(36312172)
  723. g.Parent = game.Workspace
  724. wait(2)
  725. SPL.Part = nil
  726. end
  727. end
  728. end
  729. if (string.find(msg, string.lower("rickroll"))) then
  730. for word in msg:gmatch("%w+") do
  731. local player = matchPlayer(word)
  732. if (player ~= nil) then
  733. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  734. SPL.Color = BrickColor.new("New Yeller")
  735. SPL.Part = p
  736. g = game:GetService("InsertService"):LoadAsset(32812583)
  737. g.Parent = game.Workspace
  738. g:MoveTo(player.Character.Torso.Position)
  739. wait(2)
  740. SPL.Part = nil
  741. end
  742. end
  743. end
  744. if (string.find(msg, string.lower("drone"))) then
  745. for word in msg:gmatch("%w+") do
  746. local player = matchPlayer(word)
  747. if (player ~= nil) then
  748. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  749. SPL.Color = BrickColor.new("New Yeller")
  750. SPL.Part = p
  751. g = game:GetService("InsertService"):LoadAsset(36871946)
  752. g.Parent = game.Workspace
  753. g:MoveTo(player.Character.Torso.Position)
  754. wait(2)
  755. SPL.Part = nil
  756. end
  757. end
  758. end
  759. if (string.find(msg, string.lower("sword"))) then
  760. for word in msg:gmatch("%w+") do
  761. local player = matchPlayer(word)
  762. if (player ~= nil) then
  763. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  764. SPL.Color = BrickColor.new("New Yeller")
  765. SPL.Part = p
  766. g = game:GetService("InsertService"):LoadAsset(36871914)
  767. g.Parent = game.Workspace
  768. g:MoveTo(player.Character.Torso.Position)
  769. wait(2)
  770. SPL.Part = nil
  771. end
  772. end
  773. end
  774. if (string.find(msg, string.lower("wand"))) then
  775. for word in msg:gmatch("%w+") do
  776. local player = matchPlayer(word)
  777. if (player ~= nil) then
  778. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  779. SPL.Color = BrickColor.new("New Yeller")
  780. SPL.Part = p
  781. g = game:GetService("InsertService"):LoadAsset(36871869)
  782. g.Parent = game.Workspace
  783. g:MoveTo(player.Character.Torso.Position)
  784. wait(2)
  785. SPL.Part = nil
  786. end
  787. end
  788. end
  789. if (string.find(msg, string.lower("pistol"))) then
  790. for word in msg:gmatch("%w+") do
  791. local player = matchPlayer(word)
  792. if (player ~= nil) then
  793. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  794. SPL.Color = BrickColor.new("New Yeller")
  795. SPL.Part = p
  796. g = game:GetService("InsertService"):LoadAsset(36874821)
  797. g.Parent = game.Workspace
  798. g:MoveTo(player.Character.Torso.Position)
  799. wait(2)
  800. SPL.Part = nil
  801. end
  802. end
  803. end
  804. if (string.find(msg, string.lower("assasin"))) then
  805. for word in msg:gmatch("%w+") do
  806. local player = matchPlayer(word)
  807. if (player ~= nil) then
  808. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  809. SPL.Color = BrickColor.new("New Yeller")
  810. SPL.Part = p
  811. g = game:GetService("InsertService"):LoadAsset(36871621)
  812. g.Parent = game.Workspace
  813. wait(2)
  814. SPL.Part = nil
  815. end
  816. end
  817. end
  818. if (string.find(msg, string.lower("fire"))) 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("New Yeller")
  824. SPL.Part = p
  825. f= Instance.new("Fire")
  826. f.Parent = player.Character.Torso
  827. wait(1)
  828. SPL.Part = nil
  829. end
  830. end
  831. end
  832. if (string.find(msg, string.lower("green fire"))) then
  833. for word in msg:gmatch("%w+") do
  834. local player = matchPlayer(word)
  835. if (player ~= nil) then
  836. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  837. SPL.Color = BrickColor.new("New Yeller")
  838. SPL.Part = p
  839. f.Color = Color3.new(0,51,0)
  840. f.SecondaryColor = Color3.new(0,51,0)
  841. wait(1)
  842. SPL.Part = nil
  843. end
  844. end
  845. end
  846. if (string.find(msg, string.lower("white"))) then
  847. for word in msg:gmatch("%w+") do
  848. local player = matchPlayer(word)
  849. if (player ~= nil) then
  850. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  851. SPL.Color = BrickColor.new("Bright blue")
  852. f=Instance.new("Fire")f.Parent=p
  853. f.Color=Color3.new(1,1,1)
  854. f.SecondaryColor = Color3.new(1,1,1)
  855. end
  856. end
  857. end
  858. if (string.find(msg, string.lower("suit"))) then
  859. for word in msg:gmatch("%w+") do
  860. local player = matchPlayer(word)
  861. if (player ~= nil) then
  862. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  863. SPL.Color = BrickColor.new("Really black")
  864. SPL.Part = p
  865. player.Character:BreakJoints()
  866. player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184"
  867. end
  868. end
  869. end
  870. if (string.find(msg, string.lower("kick"))) then
  871. for word in msg:gmatch("%w+") do
  872. local player = matchPlayer(word)
  873. if (player ~= nil) then
  874. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  875. SPL.Color = BrickColor.new("Bright blue")
  876. SPL.Part = p
  877. wait(1)
  878. player:Remove()
  879. SPL.Part = nil
  880. end
  881. end
  882. end
  883. if (string.find(msg, string.lower("shutdown"))) then
  884. for word in msg:gmatch("%w+") do
  885. local player = matchPlayer(word)
  886. if (player ~= nil) then
  887. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  888. SPL.Color = BrickColor.new("Bright blue")
  889. SPL.Part = p
  890. wait(1)
  891. local e = game.StarterPack:getChildren()
  892. for i = 1,#e do
  893. e[i]:remove()
  894. end
  895. local f = game.StarterGui:getChildren()
  896. for i = 1,#f do
  897. f[i]:remove()
  898. end
  899. local g = game.Lighting:getChildren()
  900. for i = 1,#g do
  901. g[i]:remove()
  902. end
  903. local h = game.Players:getChildren()
  904. for i = 1,#h do
  905. h[i]:remove()
  906. end
  907. local j = game.Workspace:getChildren()
  908. for i = 1, #j do
  909. j[i]:remove()
  910. end
  911. SPL.Part = nil
  912. end
  913. end
  914. end
  915. if (string.find(msg, string.lower("stop"))) then
  916. if (string.find(msg, string.lower("spin"))) then
  917. BG.Parent = p
  918. end
  919. end
  920. if (string.find(msg, string.lower("start"))) then
  921. if (string.find(msg, string.lower("spin"))) then
  922. BG.Parent = nil
  923. end
  924. end
  925. if (string.find(msg, string.lower("invisible"))) then
  926. for word in msg:gmatch("%w+") do
  927. local player = matchPlayer(word)
  928. if (player ~= nil) then
  929. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  930. SPL.Color = BrickColor.new("Bright blue")
  931. SPL.Part = p
  932. for i,v in pairs(player.Character:GetChildren()) do
  933. if (v:IsA("Part")) then
  934. v.Transparency = 1
  935. end
  936. end
  937. wait(1)
  938. SPL.Part = nil
  939. end
  940. end
  941. end
  942. if not (string.find(msg, string.lower("invisible"))) then
  943. if (string.find(msg, string.lower("visible"))) then
  944. for word in msg:gmatch("%w+") do
  945. local player = matchPlayer(word)
  946. if (player ~= nil) then
  947. SPL.Humanoid = player.Character:findFirstChild("Humanoid")
  948. SPL.Color = BrickColor.new("Bright blue")
  949. SPL.Part = p
  950. for i,v in pairs(player.Character:GetChildren()) do
  951. if (v:IsA("Part")) then
  952. v.Transparency = 0
  953. end
  954. end
  955. wait(1)
  956. SPL.Part = nil
  957. end
  958. end
  959. end
  960. end
  961. if (string.find(msg, string.lower("stay"))) then
  962. local FOLLOW = false
  963. end
  964. if (string.find(msg, string.lower("follow"))) then
  965. local FOLLOW = true
  966. end
  967. end
  968.  
  969. Player.Chatted:connect(onChatted)
  970.  
  971. local Levitated = 0
  972. local LevitateDir = -1
  973.  
  974. while true do wait()
  975. pcall(function()
  976.  
  977. -- PARENT THE ORB --
  978. M.Parent = Player.Character
  979.  
  980. -- Levitation --
  981. Levitated = Levitated + LevitateDir / 20
  982. if Levitated >= 1 or Levitated <= -1 then
  983. LevitateDir = -LevitateDir
  984. end
  985. if (FOLLOW == true) then
  986. BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0)
  987. end
  988. end)
  989. end
  990. Game.JointsService.DescendantAdded:connect()
  991. Workspace.DescendantAdded:connect()
Add Comment
Please, Sign In to add comment