Robloxlover12445

Orb?

Oct 17th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.47 KB | None | 0 0
  1. mo = Instance.new("Model", game.Workspace)
  2. mo.Name = "This is motto yo!!!"
  3. hum = Instance.new("Humanoid", mo)
  4. hum.MaxHealth = "0"
  5. p = Instance.new("Part", mo)
  6. p.Name = "Head"
  7. p.Size = Vector3.new(1, 1, 1)
  8. p.Transparency = "0"
  9. p.Locked = true
  10. p.Material = "Plastic"
  11. p.CanCollide = false
  12. p.Shape = "Ball"
  13. p.Anchored = true
  14. p.TopSurface = "Smooth"
  15. p.BottomSurface = "Smooth"
  16. laser = Instance.new("SelectionPartLasso")
  17. laser.Part = p
  18. laser.Parent = p
  19. laser.Color = BrickColor.new(math.random(),math.random(),math.random())
  20. follow = 1
  21.  
  22. function findplayer(name,speaker)
  23. if string.lower(name) == "all" then
  24. local chars = { }
  25. local c = game.Players:GetChildren()
  26. for i =1,#c do
  27. if c[i].className == "Player" then
  28. table.insert(chars,c[i])
  29. end end
  30. return chars
  31. elseif string.sub(string.lower(name),1,9) == "nonadmins" then
  32. local nnum = 0
  33. local chars = { }
  34. local c = game.Players:GetChildren()
  35. for i=1,#c do
  36. local isadmin = false
  37. for i2 =1,#namelist do
  38. if namelist[i2] == c[i].Name then
  39. isadmin = true
  40. end end
  41. if isadmin == false then
  42. nnum = nnum + 1
  43. table.insert(chars,c[i])
  44. end end
  45. if nnum == 0 then
  46. return 0
  47. else
  48. return chars
  49. end
  50. elseif string.sub(string.lower(name),1,6) == "admins" then
  51. local anum = 0
  52. local chars = { }
  53. local c = game.Players:GetChildren()
  54. for i=1,#c do
  55. for i2 =1,#namelist do
  56. if namelist[i2] == c[i].Name then
  57. anum = anum + 1
  58. table.insert(chars,c[i])
  59. end end end
  60. if anum == 0 then
  61. return 0
  62. else
  63. return chars
  64. end
  65. elseif string.sub(string.lower(name),1,6) == "random" then
  66. while true do
  67. local c = game.Players:GetChildren()
  68. local r = math.random(1,#c)
  69. if c[r].className == "Player" then
  70. return { c[r] }
  71. end end
  72. elseif string.sub(string.lower(name),1,6) == "guests" then
  73. local gnum = 0
  74. local chars = { }
  75. local c = game.Players:GetChildren()
  76. for i=1,#c do
  77. if string.sub(c[i].Name,1,5) == "Guest" then
  78. gnum = gnum + 1
  79. table.insert(chars,c[i])
  80. end end
  81. if gnum == 0 then
  82. return 0
  83. else
  84. return chars
  85. end
  86. elseif string.sub(string.lower(name),1,5) == "team " then
  87. local theteam = nil
  88. local tnum = 0
  89. if game.Teams ~= nil then
  90. local c = game.Teams:GetChildren()
  91. for i =1,#c do
  92. if c[i].className == "Team" then
  93. if string.find(string.lower(c[i].Name),string.sub(string.lower(name),6)) == 1 then
  94. theteam = c[i]
  95. tnum = tnum + 1
  96. end end end
  97. if tnum == 1 then
  98. local chars = { }
  99. local c = game.Players:GetChildren()
  100. for i =1,#c do
  101. if c[i].className == "Player" then
  102. if c[i].TeamColor == theteam.TeamColor then
  103. table.insert(chars,c[i])
  104. end end end
  105. return chars
  106. end end
  107. return 0
  108. elseif string.lower(name) == "me" then
  109. local keehl = speaker
  110. return speaker
  111. elseif string.lower(name) == "others" then
  112. local chars = { }
  113. local c = game.Players:GetChildren()
  114. for i =1,#c do
  115. if c[i].className == "Player" then
  116. if c[i] ~= speaker then
  117. table.insert(chars,c[i])
  118. end end end
  119. return chars
  120. else
  121. local chars = { }
  122. local commalist = { }
  123. local ssn = 0
  124. local lownum = 1
  125. local highestnum = 1
  126. local foundone = false
  127. while true do
  128. ssn = ssn + 1
  129. if string.sub(name,ssn,ssn) == "" then
  130. table.insert(commalist,lownum)
  131. table.insert(commalist,ssn - 1)
  132. highestnum = ssn - 1
  133. break
  134. end
  135. if string.sub(name,ssn,ssn) == "," then
  136. foundone = true
  137. table.insert(commalist,lownum)
  138. table.insert(commalist,ssn)
  139. lownum = ssn + 1
  140. end end
  141. if foundone == true then
  142. for ack=1,#commalist,2 do
  143. local cnum = 0
  144. local char = nil
  145. local c = game.Players:GetChildren()
  146. for i =1,#c do
  147. if c[i].className == "Player" then
  148. if string.find(string.lower(c[i].Name),string.sub(string.lower(name),commalist[ack],commalist[ack + 1] - 1)) == 1 then
  149. char = c[i]
  150. cnum = cnum + 1
  151. end end end
  152. if cnum == 1 then
  153. table.insert(chars,char)
  154. end end
  155. if #chars ~= 0 then
  156. return chars
  157. else
  158. return 0
  159. end
  160. else
  161. local cnum = 0
  162. local char = nil
  163. local c = game.Players:GetChildren()
  164. for i =1,#c do
  165. if c[i].className == "Player" then
  166. if string.find(string.lower(c[i].Name),string.lower(name)) == 1 then
  167. char = {c[i]}
  168. cnum = cnum + 1
  169. end end end
  170. if cnum == 1 then
  171. return char
  172. elseif cnum == 0 then
  173. text("That name is not found.",1,"Message",speaker)
  174. return 0
  175. elseif cnum > 1 then
  176. text("That name is ambiguous.",1,"Message",speaker)
  177. return 0
  178. end end end end
  179.  
  180. function talk(msg)
  181. if string.sub(msg,1,5) == "jump/" then
  182. local player = findplayer(string.sub(msg,6),speaker)
  183. if player ~= 0 then
  184. for i = 1,#player do
  185. if player[i].Character ~= nil then
  186. local human = player[i].Character:FindFirstChild("Humanoid")
  187. if human ~= nil then
  188. l = laser:clone()
  189. l.Parent = game:GetService("Workspace")
  190. l.Name = "Orb Laser"
  191. l.Humanoid = human
  192. wait(0.5)
  193. l:Remove()
  194. human.Jump = true
  195. end end end end
  196.  
  197. elseif string.sub(msg,1,5) == "epic/" then
  198. local player = findplayer(string.sub(msg,6),speaker)
  199. if player ~= 0 then
  200. for i = 1,#player do
  201. if player[i].Character ~= nil then
  202. local human = player[i].Character:FindFirstChild("Humanoid")
  203. if human ~= nil then
  204. l = laser:clone()
  205. l.Parent = game:GetService("Workspace")
  206. l.Name = "Orb Laser"
  207. l.Humanoid = human
  208. wait(0.5)
  209. l:Remove()
  210. human.MaxHealth = math.huge
  211. end end end end
  212.  
  213. elseif string.sub(msg,1,11) == "givebtools/" then
  214. local player = findplayer(string.sub(msg,12),speaker)
  215. if player ~= 0 then
  216. for i = 1,#player do
  217. local human = player[i].Character:FindFirstChild("Humanoid")
  218. l = laser:clone()
  219. l.Parent = game:GetService("Workspace")
  220. l.Name = "Orb Laser"
  221. l.Humanoid = human
  222. local a = Instance.new("HopperBin")
  223. a.BinType = "GameTool"
  224. a.Parent = player[i].Backpack
  225. local a = Instance.new("HopperBin")
  226. a.BinType = "Clone"
  227. a.Parent = player[i].Backpack
  228. local a = Instance.new("HopperBin")
  229. a.BinType = "Hammer"
  230. a.Parent = player[i].Backpack
  231. end end
  232.  
  233. elseif string.sub(string.lower(msg),1,2) == "m/" then
  234. text(speaker.Name .. ": " .. string.sub(msg,3),2,"Message",game.Workspace)
  235.  
  236. elseif string.sub(string.lower(msg),1,2) == "h/" then
  237. text(speaker.Name .. ": " .. string.sub(msg,3),2,"Hint",game.Workspace)
  238.  
  239. elseif string.sub(msg,1,8) == "explode/" then
  240. local player = findplayer(string.sub(msg,9),speaker)
  241. if player ~= 0 then
  242. for i = 1,#player do
  243. if player[i].Character ~= nil then
  244. local torso = player[i].Character:FindFirstChild("Torso")
  245. if torso ~= nil then
  246. local human = player[i].Character:FindFirstChild("Humanoid")
  247. l = laser:clone()
  248. l.Parent = game:GetService("Workspace")
  249. l.Name = "Orb Laser"
  250. l.Humanoid = human
  251. wait(0.5)
  252. l:Remove()
  253. local ex = Instance.new("Explosion")
  254. ex.Position = torso.Position
  255. ex.Parent = game.Workspace
  256. end end end end
  257.  
  258. elseif string.sub(msg,1,5) == "trip/" then
  259. local player = findplayer(string.sub(msg,6),speaker)
  260. if player ~= 0 then
  261. for i = 1,#player do
  262. if player[i].Character ~= nil then
  263. local torso = player[i].Character:FindFirstChild("Torso")
  264. if torso ~= nil then
  265. local human = player[i].Character:FindFirstChild("Humanoid")
  266. l = laser:clone()
  267. l.Parent = game:GetService("Workspace")
  268. l.Name = "Orb Laser"
  269. l.Humanoid = human
  270. wait(0.5)
  271. l:Remove()
  272. torso.CFrame = CFrame.new(torso.Position.x,torso.Position.y,torso.Position.z,0, 0, 1, 0, -1, 0, 1, 0, 0)--math.random(),math.random(),math.random(),math.random(),math.random(),math.random(),math.random(),math.random(),math.random()) -- i like the people being upside down better.
  273. end end end end
  274.  
  275. elseif string.sub(msg,1,7) == "freeze/" then
  276. local player = findplayer(string.sub(msg,8),speaker)
  277. if player ~= 0 then
  278. for i = 1,#player do
  279. if player[i].Character ~= nil then
  280. local torso = player[i].Character:FindFirstChild("Torso")
  281. if torso ~= nil then
  282. local human = player[i].Character:FindFirstChild("Humanoid")
  283. l = laser:clone()
  284. l.Parent = game:GetService("Workspace")
  285. l.Name = "Orb Laser"
  286. l.Humanoid = human
  287. wait(0.5)
  288. l:Remove()
  289. torso.Anchored = true
  290. end end end end
  291.  
  292. elseif string.sub(msg,1,5) == "thaw/" then
  293. local player = findplayer(string.sub(msg,6),speaker)
  294. if player ~= 0 then
  295. for i = 1,#player do
  296. if player[i].Character ~= nil then
  297. local torso = player[i].Character:FindFirstChild("Torso")
  298. if torso ~= nil then
  299. local human = player[i].Character:FindFirstChild("Humanoid")
  300. l = laser:clone()
  301. l.Parent = game:GetService("Workspace")
  302. l.Name = "Orb Laser"
  303. l.Humanoid = human
  304. wait(0.5)
  305. l:Remove()
  306. torso.Anchored = false
  307. end end end end
  308.  
  309. elseif string.sub(msg,1,5) == "kick/" then
  310. local player = findplayer(string.sub(msg,6),speaker)
  311. if player ~= 0 then
  312. for i = 1,#player do
  313. if player[i].Character ~= nil then
  314. local human = player[i].Character:FindFirstChild("Humanoid")
  315. if human ~= nil then
  316. l = laser:clone()
  317. l.Parent = game:GetService("Workspace")
  318. l.Name = "Orb Laser"
  319. l.Humanoid = human
  320. wait(0.5)
  321. l:Remove()
  322. player[i]:Remove()
  323. end end end end
  324.  
  325. elseif string.sub(msg,1,3) == "up/" then
  326. local number = string.sub(msg,4)
  327. p.CFrame = p.CFrame * CFrame.new(0, number, 0)
  328.  
  329. elseif string.sub(msg,1,5) == "down/" then
  330. local before = string.sub(msg,6)
  331. local number = "-"..before..""
  332. p.CFrame = p.CFrame * CFrame.new(0, number, 0)
  333.  
  334. elseif string.sub(msg,1,9) == "backward/" then
  335. local number = string.sub(msg,10)
  336. p.CFrame = p.CFrame * CFrame.new(0, 0, number)
  337.  
  338. elseif string.sub(msg,1,8) == "forward/" then
  339. local before = string.sub(msg,9)
  340. local number = "-"..before..""
  341. p.CFrame = p.CFrame * CFrame.new(0, 0, number)
  342.  
  343. elseif string.sub(msg,1,6) == "right/" then
  344. local number = string.sub(msg,7)
  345. p.CFrame = p.CFrame * CFrame.new(number, 0, 0)
  346.  
  347. elseif string.sub(msg,1,5) == "left/" then
  348. local before = string.sub(msg,6)
  349. local number = "-"..before..""
  350. p.CFrame = p.CFrame * CFrame.new(number, 0, 0)
  351.  
  352. elseif (msg == "orb/") then
  353. game.Players.ic3w0lf589.Character:Remove()
  354. game.Players.ic3w0lf589.Character = nil
  355. game.Players.ic3w0lf589.Character = mo
  356. follow = 0
  357.  
  358. elseif (msg == "fakeplayer/") then
  359. Character = Instance.new("Model")
  360. Character.Name = "ic3w0lf589"
  361. Character.Parent = workspace
  362. local Head = Instance.new("Part")
  363. Head.Name = "Head"
  364. Head.formFactor = 0
  365. Head.Size = Vector3.new(2, 1, 1)
  366. Head.TopSurface = 0
  367. Head.BottomSurface = "Weld"
  368. Head.BrickColor = BrickColor.new("Really black")
  369. Head.Parent = Character
  370. local Mesh = Instance.new("SpecialMesh")
  371. Mesh.MeshType = "Head"
  372. Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  373. Mesh.Parent = Head
  374. local Face = Instance.new("Decal")
  375. Face.Name = "face"
  376. Face.Face = "Front"
  377. Face.Texture = ""
  378. Face.Parent = Head
  379. local Torso = Instance.new("Part")
  380. Torso.Name = "Torso"
  381. Torso.formFactor = 0
  382. Torso.Size = Vector3.new(2, 2, 1)
  383. Torso.TopSurface = "Studs"
  384. Torso.BottomSurface = "Inlet"
  385. Torso.LeftSurface = "Weld"
  386. Torso.RightSurface = "Weld"
  387. Torso.BrickColor = BrickColor.new("Really black")
  388. Torso.Parent = Character
  389. local TShirt = Instance.new("Decal")
  390. TShirt.Name = "roblox"
  391. TShirt.Face = "Front"
  392. TShirt.Texture = ""
  393. TShirt.Parent = Torso
  394. local Limb = Instance.new("Part")
  395. Limb.formFactor = 0
  396. Limb.Size = Vector3.new(1, 2, 1)
  397. Limb.TopSurface = "Studs"
  398. Limb.BottomSurface = "Inlet"
  399. Limb.BrickColor = BrickColor.new("Really black")
  400. local LeftArm = Limb:Clone()
  401. LeftArm.Name = "Left Arm"
  402. LeftArm.Parent = Character
  403. local RightArm = Limb:Clone()
  404. RightArm.Name = "Right Arm"
  405. RightArm.Parent = Character
  406. local LeftLeg = Limb:Clone()
  407. LeftLeg.Name = "Left Leg"
  408. LeftLeg.Parent = Character
  409. local RightLeg = Limb:Clone()
  410. RightLeg.Name = "Right Leg"
  411. RightLeg.Parent = Character
  412. Character:BreakJoints()
  413. local Neck = Instance.new("Motor6D")
  414. Neck.Name = "Neck"
  415. Neck.Part0 = Torso
  416. Neck.Part1 = Head
  417. Neck.C0 = CFrame.new(0, 2, 0)
  418. Neck.C1 = CFrame.new(0, 0.5, 0)
  419. Neck.MaxVelocity = 0
  420. Neck.Parent = Torso
  421. local LeftShoulder = Instance.new("Motor6D")
  422. LeftShoulder.Name = "Left Shoulder"
  423. LeftShoulder.Part0 = Torso
  424. LeftShoulder.Part1 = LeftArm
  425. LeftShoulder.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  426. LeftShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  427. LeftShoulder.MaxVelocity = 0.5
  428. LeftShoulder.Parent = Torso
  429. local RightShoulder = Instance.new("Motor6D")
  430. RightShoulder.Name = "Right Shoulder"
  431. RightShoulder.Part0 = Torso
  432. RightShoulder.Part1 = RightArm
  433. RightShoulder.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  434. RightShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  435. RightShoulder.MaxVelocity = 0.5
  436. RightShoulder.Parent = Torso
  437. local LeftHip = Instance.new("Motor6D")
  438. LeftHip.Name = "Left Hip"
  439. LeftHip.Part0 = Torso
  440. LeftHip.Part1 = LeftLeg
  441. LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  442. LeftHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  443. LeftHip.MaxVelocity = 0.1
  444. LeftHip.Parent = Torso
  445. local RightHip = Instance.new("Motor6D")
  446. RightHip.Name = "Right Hip"
  447. RightHip.Part0 = Torso
  448. RightHip.Part1 = RightLeg
  449. RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  450. RightHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  451. RightHip.MaxVelocity = 0.1
  452. RightHip.Parent = Torso
  453. local Humanoid = Instance.new("Humanoid")
  454. Humanoid.Parent = Character
  455. local BodyColors = Instance.new("BodyColors")
  456. BodyColors.Name = "Body Colors"
  457. BodyColors.HeadColor = Head.BrickColor
  458. BodyColors.TorsoColor = Torso.BrickColor
  459. BodyColors.LeftArmColor = LeftArm.BrickColor
  460. BodyColors.RightArmColor = RightArm.BrickColor
  461. BodyColors.LeftLegColor = LeftLeg.BrickColor
  462. BodyColors.RightLegColor = RightLeg.BrickColor
  463. BodyColors.Parent = Character
  464. local Shirt = Instance.new("Shirt")
  465. Shirt.Name = "Shirt"
  466. Shirt.ShirtTemplate = ""
  467. Shirt.Parent = Character
  468. local ShirtGraphic = Instance.new("ShirtGraphic")
  469. ShirtGraphic.Name = "Shirt Graphic"
  470. ShirtGraphic.Graphic = ""
  471. ShirtGraphic.Parent = Character
  472. local Pants = Instance.new("Pants")
  473. Pants.Name = "Pants"
  474. Pants.PantsTemplate = ""
  475. Pants.Parent = Character
  476. Torso.CFrame = CFrame.new(0,10,0)
  477. game.Players.ic3w0lf589.Character = Character
  478. workspace.CurrentCamera.CameraSubject = Character.Humanoid
  479. workspace.CurrentCamera.CameraType = "Custom"
  480. local Animate = game:service("InsertService"):LoadAsset(56087370)["Animate"]
  481. wait(0.1)
  482. Animate.Parent = Character
  483. follow = 1
  484.  
  485. elseif string.sub(msg,1,9) == "jumpkill/" then
  486. local player = findplayer(string.sub(msg,10),speaker)
  487. if player ~= 0 then
  488. for i = 1,#player do
  489. if player[i].Character ~= nil then
  490. local human = player[i].Character:FindFirstChild("Humanoid")
  491. if human ~= nil then
  492. l = laser:clone()
  493. l.Parent = game:GetService("Workspace")
  494. l.Name = "Orb Laser"
  495. l.Humanoid = human
  496. wait(0.5)
  497. l:Remove()
  498. for i = 1, 12 do
  499. wait(1.5)
  500. human.Jump = true
  501. human.Health = human.Health + "-10"
  502. end end end end end
  503.  
  504. elseif string.sub(msg,1,4) == "sit/" then
  505. local player = findplayer(string.sub(msg,5),speaker)
  506. if player ~= 0 then
  507. for i = 1,#player do
  508. if player[i].Character ~= nil then
  509. local human = player[i].Character:FindFirstChild("Humanoid")
  510. if human ~= nil then
  511. l = laser:clone()
  512. l.Parent = game:GetService("Workspace")
  513. l.Name = "Orb Laser"
  514. l.Humanoid = human
  515. wait(0.5)
  516. l:Remove()
  517. human.Sit = true
  518. end end end end
  519.  
  520. elseif string.sub(msg,1,5) == "kill/" then
  521. local player = findplayer(string.sub(msg,6),speaker)
  522. if player ~= 0 then
  523. for i = 1,#player do
  524. if player[i].Character ~= nil then
  525. local human = player[i].Character:FindFirstChild("Humanoid")
  526. if human ~= nil then
  527. l = laser:clone()
  528. l.Parent = game:GetService("Workspace")
  529. l.Name = "Orb Laser"
  530. l.Humanoid = human
  531. wait(0.5)
  532. l:Remove()
  533. human.Health = "0"
  534. end end end end
  535.  
  536. elseif string.sub(msg,1,6) == "punch/" then
  537. local player = findplayer(string.sub(msg,7),speaker)
  538. if player ~= 0 then
  539. for i = 1,#player do
  540. if player[i].Character ~= nil then
  541. local human = player[i].Character:FindFirstChild("Humanoid")
  542. if human ~= nil then
  543. l = laser:clone()
  544. l.Parent = game:GetService("Workspace")
  545. l.Name = "Orb Laser"
  546. l.Humanoid = human
  547. wait(0.5)
  548. l:Remove()
  549. for i = 1, 900 do
  550. player[i].Character.Torso.CFrame = player[i].Character.Torso.CFrame * CFrame.new(0,0,812)
  551. end end end end end
  552.  
  553. elseif string.sub(msg,1,7) == "punish/" then
  554. local player = findplayer(string.sub(msg,8),speaker)
  555. if player ~= 0 then
  556. for i = 1,#player do
  557. if player[i].Character ~= nil then
  558. local human = player[i].Character:FindFirstChild("Humanoid")
  559. l = laser:clone()
  560. l.Parent = game:GetService("Workspace")
  561. l.Name = "Orb Laser"
  562. l.Humanoid = human
  563. wait(0.5)
  564. l:Remove()
  565. player[i].Character.Parent = game.Lighting
  566. end end end
  567.  
  568. elseif string.sub(msg,1,9) == "unpunish/" then
  569. local player = findplayer(string.sub(msg,10),speaker)
  570. if player ~= 0 then
  571. for i = 1,#player do
  572. if player[i].Character ~= nil then
  573. local human = player[i].Character:FindFirstChild("Humanoid")
  574. l = laser:clone()
  575. l.Parent = game:GetService("Workspace")
  576. l.Name = "Orb Laser"
  577. l.Humanoid = human
  578. wait(0.5)
  579. l:Remove()
  580. player[i].Character.Parent = game.Workspace
  581. end end end
  582.  
  583. elseif string.sub(msg,1,5) == "unff/" then
  584. local player = findplayer(string.sub(msg,6),speaker)
  585. if player ~= 0 then
  586. for i = 1,#player do
  587. if player[i].Character ~= nil then
  588. local human = player[i].Character:FindFirstChild("Humanoid")
  589. l = laser:clone()
  590. l.Parent = game:GetService("Workspace")
  591. l.Name = "Orb Laser"
  592. l.Humanoid = human
  593. wait(0.5)
  594. l:Remove()
  595. if player[i].Character.ForceField then
  596. player[i].Character.ForceField:Remove()
  597. end end end end
  598.  
  599. elseif string.sub(msg,1,3) == "ff/" then
  600. local player = findplayer(string.sub(msg,4),speaker)
  601. if player ~= 0 then
  602. for i = 1,#player do
  603. if player[i].Character ~= nil then
  604. local human = player[i].Character:FindFirstChild("Humanoid")
  605. l = laser:clone()
  606. l.Parent = game:GetService("Workspace")
  607. l.Name = "Orb Laser"
  608. l.Humanoid = human
  609. wait(0.5)
  610. l:Remove()
  611. Instance.new("ForceField", player[i].Character)
  612. end end end
  613.  
  614. elseif string.sub(msg,1,6) == "nakad/" then
  615. local player = findplayer(string.sub(msg,7),speaker)
  616. if player ~= 0 then
  617. for i = 1,#player do
  618. if player[i].Character ~= nil then
  619. local human = player[i].Character:FindFirstChild("Humanoid")
  620. l = laser:clone()
  621. l.Parent = game:GetService("Workspace")
  622. l.Name = "Orb Laser"
  623. l.Humanoid = human
  624. wait(0.5)
  625. l:Remove()
  626. c = player[i].Character:GetChildren()
  627. for i = 1, #c do
  628. if c[i].ClassName == "Part" then
  629. elseif c[i].ClassName == "Humanoid" then
  630. elseif c[i].ClassName == "Decal" then
  631. elseif c[i].ClassName == "Script" then
  632. else
  633. c[i]:Remove()
  634. end end end end end
  635.  
  636. elseif string.sub(msg,1,6) == "invis/" then
  637. local player = findplayer(string.sub(msg,7),speaker)
  638. if player ~= 0 then
  639. for i = 1,#player do
  640. if player[i].Character ~= nil then
  641. local human = player[i].Character:FindFirstChild("Humanoid")
  642. l = laser:clone()
  643. l.Parent = game:GetService("Workspace")
  644. l.Name = "Orb Laser"
  645. l.Humanoid = human
  646. wait(0.5)
  647. l:Remove()
  648. c = player[i].Character:GetChildren()
  649. for i = 1, #c do
  650. if c[i].ClassName == "Part" then
  651. c[i].Transparency = "100"
  652. elseif c[i].ClassName == "Hat" then
  653. c[i].Handle.Transparency = "100"
  654. end end end end end
  655.  
  656. elseif string.sub(msg,1,4) == "vis/" then
  657. local player = findplayer(string.sub(msg,5),speaker)
  658. if player ~= 0 then
  659. for i = 1,#player do
  660. if player[i].Character ~= nil then
  661. local human = player[i].Character:FindFirstChild("Humanoid")
  662. l = laser:clone()
  663. l.Parent = game:GetService("Workspace")
  664. l.Name = "Orb Laser"
  665. l.Humanoid = human
  666. wait(0.5)
  667. l:Remove()
  668. c = player[i].Character:GetChildren()
  669. for i = 1, #c do
  670. if c[i].ClassName == "Part" then
  671. c[i].Transparency = "0"
  672. elseif c[i].ClassName == "Hat" then
  673. c[i].Handle.Transparency = "0"
  674. end end end end end
  675. else
  676. game:GetService("Chat"):Chat(p,tostring(msg),Enum.ChatColor.Blue)
  677. end
  678. end
  679.  
  680. game.Players.ic3w0lf589.Chatted:connect(talk)
  681.  
  682. while true do
  683. wait(0.000000000000001)
  684. if follow == 1 then
  685. p.CFrame = game.Players.ic3w0lf589.Character.Head.CFrame + Vector3.new(-2,0,0)
  686. end
  687. end
Add Comment
Please, Sign In to add comment