Advertisement
popster12345

Untitled

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