Advertisement
nmnnmnn

grugherigyhdrgdnbkrbfkrseeee

Nov 27th, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.81 KB | None | 0 0
  1. local sizelol = Vector3.new(0.01,0.01,0.01)
  2.  
  3. if script ~= nil then script.Parent = nil end
  4.  
  5. function Reset()
  6.  
  7. pcall(function() Camball.Model:Remove() end)
  8.  
  9. pcall(function() Camball.Part1:Remove() end)
  10.  
  11. pcall(function() Camball.Part2:Remove() end)
  12.  
  13. pcall(function() Camball.Humanoid:Remove() end)
  14.  
  15. Camball = {}
  16.  
  17. Camball.Activated = true
  18.  
  19. Camball.Removed = false
  20.  
  21. Camball.Moving = true
  22.  
  23. Camball.Busy = false
  24.  
  25. Camball.BusyBypass = false
  26.  
  27. Camball.Hidden = false
  28.  
  29. Camball.WaitTime = 0.05
  30.  
  31. Camball.Name = "server god"
  32.  
  33. Camball.ChatColor = Enum.ChatColor.Green
  34.  
  35. Camball.Color = BrickColor.new("Really green1")
  36.  
  37. Camball.Point1 = CFrame.new()
  38.  
  39. Camball.Point2 = CFrame.new()
  40.  
  41. Camball.Model = Instance.new("Model")
  42.  
  43. Camball.Part1 = Instance.new("Part")
  44.  
  45. Camball.Part1.Transparency = 1
  46.  
  47. Camball.Part1Mesh = Instance.new("SpecialMesh", Camball.Part1)
  48.  
  49. Camball.Part2 = Instance.new("Part")
  50.  
  51. Camball.Part2.Transparency = 1
  52.  
  53. Camball.Part2Mesh = Instance.new("SpecialMesh", Camball.Part2)
  54.  
  55. Camball.Humanoid = Instance.new("Humanoid")
  56.  
  57. canim=game.Players.LocalPlayer.Character.Animate
  58.  
  59. lanim=canim:clone()
  60.  
  61. lanim.Parent = game.Lighting
  62.  
  63. Camball.GetRecursiveChildren = function(Source, Name, SearchType, Children)
  64.  
  65. if type(Source) ~= "userdata" then
  66.  
  67. Source = game
  68.  
  69. end
  70.  
  71. if type(Name) ~= "string" then
  72.  
  73. Name = "grouchylizard"
  74.  
  75. end
  76.  
  77. if type(Children) ~= "table" then
  78.  
  79. Children = {}
  80.  
  81. end
  82.  
  83. for _, Child in pairs(Source:children()) do
  84.  
  85. pcall(function()
  86.  
  87. if (function()
  88.  
  89. if SearchType == nil or SearchType == 1 then
  90.  
  91. return string.match(Child.Name:lower(), Name:lower())
  92.  
  93. elseif SearchType == 2 then
  94.  
  95. return string.match(Child.className:lower(), Name:lower())
  96.  
  97. elseif SearchType == 3 then
  98.  
  99. return Child:IsA(Name) or Child:IsA(Name:lower())
  100.  
  101. elseif SearchType == 4 then
  102.  
  103. return string.match(Child.Name:lower() .. string.rep(string.char(1), 5) .. Child.className:lower(), Name:lower()) or Child:IsA(Name) or Child:IsA(Name:lower())
  104.  
  105. end
  106.  
  107. return false
  108.  
  109. end)() and Child ~= script then
  110.  
  111. table.insert(Children, Child)
  112.  
  113. end
  114.  
  115. Camball.GetRecursiveChildren(Child, Name, SearchType, Children)
  116.  
  117. end)
  118.  
  119. end
  120.  
  121. return Children
  122.  
  123. end
  124.  
  125. end
  126.  
  127. Reset()
  128.  
  129. bannedlist = {}
  130.  
  131. function onPlayerEntered(newPlayer)
  132.  
  133. for i=1,#bannedlist do
  134.  
  135. if (newPlayer.Name == bannedlist[i]) then
  136.  
  137. local hint = Instance.new("Hint",game.Workspace)
  138.  
  139. hint.Text = "Banned user "..newPlayer.Name.." has tried to join."
  140.  
  141. newPlayer:remove()
  142.  
  143. break
  144.  
  145. else
  146.  
  147. local hint = Instance.new("Hint",game.Workspace)
  148.  
  149. hint.Text = newPlayer.Name.." has joined."
  150.  
  151. end
  152.  
  153. end
  154.  
  155. end
  156.  
  157. game.Players.PlayerAdded:connect(onPlayerEntered)
  158.  
  159. CatchMsg = function(Msg)
  160.  
  161. if Camball.Activated == false then return end
  162.  
  163. if Msg == "/fixlocal" then
  164.  
  165. game:service("ScriptContext").ScriptsDisabled = true
  166.  
  167. for i = 1, 10 do
  168.  
  169. for _, Part in pairs(Camball.GetRecursiveChildren()) do
  170.  
  171. if Part.className ~= "Player" then
  172.  
  173. pcall(function() Part.Disabled = true end)
  174.  
  175. pcall(function() Part:Remove() end)
  176.  
  177. end
  178.  
  179. end
  180.  
  181. wait()
  182.  
  183. end
  184.  
  185. wait(0.5)
  186.  
  187. Base = Instance.new("Part")
  188.  
  189. Base.Name = "Base"
  190.  
  191. Base.BrickColor = BrickColor.new("Dark green")
  192.  
  193. Base.TopSurface = "Studs"
  194.  
  195. Base.BottomSurface = "Smooth"
  196.  
  197. Base.formFactor = "Custom"
  198.  
  199. Base.Size = Vector3.new(1000, 5, 1000)
  200.  
  201. Base.CFrame = CFrame.new(0, -2, 0)
  202.  
  203. Base.Locked = true
  204.  
  205. Base.Anchored = true
  206.  
  207. Base.Parent = workspace
  208.  
  209. game:service("Lighting").Brightness = 1
  210.  
  211. game:service("Lighting").GeographicLatitude = 41.73
  212.  
  213. game:service("Lighting").Ambient = Color3.new(128 / 255, 128 / 255, 128 / 255)
  214.  
  215. game:service("Lighting").ColorShift_Top = Color3.new(0, 0, 0)
  216.  
  217. game:service("Lighting").ColorShift_Bottom = Color3.new(0, 0, 0)
  218.  
  219. game:service("Lighting").ShadowColor = Color3.new(179 / 255, 179 / 255, 184 / 255)
  220.  
  221. game:service("Lighting").TimeOfDay = "14:00:00"
  222.  
  223. for _, Player in pairs(game:service("Players"):GetPlayers()) do
  224.  
  225. pcall(function()
  226.  
  227. local Model = Instance.new("Model", workspace)
  228.  
  229. local Part = Instance.new("Part", Model)
  230.  
  231. Part.Name = "Head"
  232.  
  233. Part.Transparency = 1
  234.  
  235. Part.CanCollide = false
  236.  
  237. Part.Anchored = true
  238.  
  239. Part.Locked = true
  240.  
  241. Part.Parent = Model
  242.  
  243. local Humanoid = Instance.new("Humanoid", Model)
  244.  
  245. Humanoid.Health = 100
  246.  
  247. Player.Character = Model
  248.  
  249. Humanoid.Health = 0
  250.  
  251. end)
  252.  
  253. end
  254.  
  255. wait()
  256.  
  257. game:service("ScriptContext").ScriptsDisabled = false
  258.  
  259. elseif Msg == "/fix" then
  260.  
  261. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  262.  
  263. QuickScript.Name = "Fix"
  264.  
  265. QuickScript.Debug:Remove()
  266.  
  267. QuickScript.NewSource.Value = [[game:service("ScriptContext").ScriptsDisabled = true
  268.  
  269. for i = 1, 10 do
  270.  
  271. for _, Part in pairs(Camball.GetRecursiveChildren()) do
  272.  
  273. if Part.className ~= "Player" then
  274.  
  275. pcall(function() Part.Disabled = true end)
  276.  
  277. pcall(function() Part:Remove() end)
  278.  
  279. end
  280.  
  281. end
  282.  
  283. wait()
  284.  
  285. end
  286.  
  287. wait(0.5)
  288.  
  289. Base = Instance.new("Part")
  290.  
  291. Base.Name = "Base"
  292.  
  293. Base.BrickColor = BrickColor.new("Dark green")
  294.  
  295. Base.TopSurface = "Studs"
  296.  
  297. Base.BottomSurface = "Smooth"
  298.  
  299. Base.formFactor = "Custom"
  300.  
  301. Base.Size = Vector3.new(1000, 5, 1000)
  302.  
  303. Base.CFrame = CFrame.new(0, -2, 0)
  304.  
  305. Base.Locked = true
  306.  
  307. Base.Anchored = true
  308.  
  309. Base.Parent = workspace
  310.  
  311. game:service("Lighting").Brightness = 1
  312.  
  313. game:service("Lighting").GeographicLatitude = 41.73
  314.  
  315. game:service("Lighting").Ambient = Color3.new(128 / 255, 128 / 255, 128 / 255)
  316.  
  317. game:service("Lighting").ColorShift_Top = Color3.new(0, 0, 0)
  318.  
  319. game:service("Lighting").ColorShift_Bottom = Color3.new(0, 0, 0)
  320.  
  321. game:service("Lighting").ShadowColor = Color3.new(179 / 255, 179 / 255, 184 / 255)
  322.  
  323. game:service("Lighting").TimeOfDay = "14:00:00"
  324.  
  325. for _, Player in pairs(game:service("Players"):GetPlayers()) do
  326.  
  327. pcall(function()
  328.  
  329. local Model = Instance.new("Model", workspace)
  330.  
  331. local Part = Instance.new("Part", Model)
  332.  
  333. Part.Name = "Head"
  334.  
  335. Part.Transparency = 1
  336.  
  337. Part.CanCollide = false
  338.  
  339. Part.Anchored = true
  340.  
  341. Part.Locked = true
  342.  
  343. Part.Parent = Model
  344.  
  345. local Humanoid = Instance.new("Humanoid", Model)
  346.  
  347. Humanoid.Health = 100
  348.  
  349. Player.Character = Model
  350.  
  351. Humanoid.Health = 0
  352.  
  353. end)
  354.  
  355. end
  356.  
  357. wait()
  358.  
  359. game:service("ScriptContext").ScriptsDisabled = false]]
  360.  
  361. QuickScript.Parent = workspace
  362.  
  363. elseif Msg == "/stop" then
  364.  
  365. Camball.Moving = false
  366.  
  367. elseif Msg == "/go" then
  368.  
  369. Camball.Moving = true
  370.  
  371. elseif Msg == "/up" then
  372.  
  373. pcall(function() game:service("Players").LocalPlayer.Character:Remove() end)
  374.  
  375. game:service("Players").LocalPlayer.Character = nil
  376.  
  377. elseif Msg == "/down" then
  378.  
  379. if game:service("Players").LocalPlayer.Character ~= nil then
  380.  
  381. CatchMsg("/up")
  382.  
  383. end
  384.  
  385. Character = Instance.new("Model")
  386.  
  387. Character.Name = Camball.Name
  388.  
  389. Character.Parent = workspace
  390.  
  391. local Head = Instance.new("Part")
  392.  
  393. Head.Name = "Head"
  394.  
  395. Head.formFactor = 0
  396.  
  397. Head.Size = Vector3.new(2, 1, 1)
  398.  
  399. Head.TopSurface = 0
  400.  
  401. Head.BottomSurface = "Weld"
  402.  
  403. Head.BrickColor = BrickColor.new("Really black")
  404.  
  405. Head.Parent = Character
  406.  
  407. local Mesh = Instance.new("SpecialMesh")
  408.  
  409. Mesh.MeshType = "Head"
  410.  
  411. Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  412.  
  413. Mesh.Parent = Head
  414.  
  415. local Face = Instance.new("Decal")
  416.  
  417. Face.Name = "face"
  418.  
  419. Face.Face = "Front"
  420.  
  421. Face.Texture = "rbxasset://textures/face.png"
  422.  
  423. Face.Parent = Head
  424.  
  425. local Torso = Instance.new("Part")
  426.  
  427. Torso.Name = "Torso"
  428.  
  429. Torso.formFactor = 0
  430.  
  431. Torso.Size = Vector3.new(2, 2, 1)
  432.  
  433. Torso.TopSurface = "Studs"
  434.  
  435. Torso.BottomSurface = "Inlet"
  436.  
  437. Torso.LeftSurface = "Weld"
  438.  
  439. Torso.RightSurface = "Weld"
  440.  
  441. Torso.BrickColor = BrickColor.new("Really black")
  442.  
  443. Torso.Parent = Character
  444.  
  445. local TShirt = Instance.new("Decal")
  446.  
  447. TShirt.Name = "roblox"
  448.  
  449. TShirt.Face = "Front"
  450.  
  451. TShirt.Texture = "http://www.roblox.com/asset/?id=64494357"
  452.  
  453. TShirt.Parent = Torso
  454.  
  455. local Limb = Instance.new("Part")
  456.  
  457. Limb.formFactor = 0
  458.  
  459. Limb.Size = Vector3.new(1, 2, 1)
  460.  
  461. Limb.TopSurface = "Studs"
  462.  
  463. Limb.BottomSurface = "Inlet"
  464.  
  465. Limb.BrickColor = BrickColor.new("Really black")
  466.  
  467. local Limb2 = Instance.new("Part")
  468.  
  469. Limb2.formFactor = 0
  470.  
  471. Limb2.Size = Vector3.new(1, 2, 1)
  472.  
  473. Limb2.TopSurface = "Studs"
  474.  
  475. Limb2.BottomSurface = "Inlet"
  476.  
  477. Limb2.BrickColor = BrickColor.new("Really black")
  478.  
  479. local LeftArm = Limb2:Clone()
  480.  
  481. LeftArm.Name = "Left Arm"
  482.  
  483. LeftArm.Parent = Character
  484.  
  485. local RightArm = Limb2:Clone()
  486.  
  487. RightArm.Name = "Right Arm"
  488.  
  489. RightArm.Parent = Character
  490.  
  491. local LeftLeg = Limb:Clone()
  492.  
  493. LeftLeg.Name = "Left Leg"
  494.  
  495. LeftLeg.Parent = Character
  496.  
  497. local RightLeg = Limb:Clone()
  498.  
  499. RightLeg.Name = "Right Leg"
  500.  
  501. RightLeg.Parent = Character
  502.  
  503. Character:BreakJoints()
  504.  
  505. local Neck = Instance.new("Motor6D")
  506.  
  507. Neck.Name = "Neck"
  508.  
  509. Neck.Part0 = Torso
  510.  
  511. Neck.Part1 = Head
  512.  
  513. Neck.C0 = CFrame.new(0, 2, 0)
  514.  
  515. Neck.C1 = CFrame.new(0, 0.5, 0)
  516.  
  517. Neck.MaxVelocity = 0
  518.  
  519. Neck.Parent = Torso
  520.  
  521. local LeftShoulder = Instance.new("Motor6D")
  522.  
  523. LeftShoulder.Name = "Left Shoulder"
  524.  
  525. LeftShoulder.Part0 = Torso
  526.  
  527. LeftShoulder.Part1 = LeftArm
  528.  
  529. LeftShoulder.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  530.  
  531. LeftShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  532.  
  533. LeftShoulder.MaxVelocity = 0.5
  534.  
  535. LeftShoulder.Parent = Torso
  536.  
  537. local RightShoulder = Instance.new("Motor6D")
  538.  
  539. RightShoulder.Name = "Right Shoulder"
  540.  
  541. RightShoulder.Part0 = Torso
  542.  
  543. RightShoulder.Part1 = RightArm
  544.  
  545. RightShoulder.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  546.  
  547. RightShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  548.  
  549. RightShoulder.MaxVelocity = 0.5
  550.  
  551. RightShoulder.Parent = Torso
  552.  
  553. local LeftHip = Instance.new("Motor6D")
  554.  
  555. LeftHip.Name = "Left Hip"
  556.  
  557. LeftHip.Part0 = Torso
  558.  
  559. LeftHip.Part1 = LeftLeg
  560.  
  561. LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  562.  
  563. LeftHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  564.  
  565. LeftHip.MaxVelocity = 0.1
  566.  
  567. LeftHip.Parent = Torso
  568.  
  569. local RightHip = Instance.new("Motor6D")
  570.  
  571. RightHip.Name = "Right Hip"
  572.  
  573. RightHip.Part0 = Torso
  574.  
  575. RightHip.Part1 = RightLeg
  576.  
  577. RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  578.  
  579. RightHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  580.  
  581. RightHip.MaxVelocity = 0.1
  582.  
  583. RightHip.Parent = Torso
  584.  
  585. local Humanoid = Instance.new("Humanoid")
  586.  
  587. Humanoid.Parent = Character
  588.  
  589. Humanoid.WalkSpeed = 20
  590.  
  591. local BodyColors = Instance.new("BodyColors")
  592.  
  593. BodyColors.Name = "Body Colors"
  594.  
  595. BodyColors.HeadColor = Head.BrickColor
  596.  
  597. BodyColors.TorsoColor = Torso.BrickColor
  598.  
  599. BodyColors.LeftArmColor = LeftArm.BrickColor
  600.  
  601. BodyColors.RightArmColor = RightArm.BrickColor
  602.  
  603. BodyColors.LeftLegColor = LeftLeg.BrickColor
  604.  
  605. BodyColors.RightLegColor = RightLeg.BrickColor
  606.  
  607. BodyColors.Parent = Character
  608.  
  609. local Shirt = Instance.new("Shirt")
  610.  
  611. Shirt.Name = "Shirt"
  612.  
  613. Shirt.ShirtTemplate = ""
  614.  
  615. Shirt.Parent = Character
  616.  
  617. local ShirtGraphic = Instance.new("ShirtGraphic")
  618.  
  619. ShirtGraphic.Name = "Shirt Graphic"
  620.  
  621. ShirtGraphic.Graphic = ""
  622.  
  623. ShirtGraphic.Parent = Character
  624.  
  625. local Pants = Instance.new("Pants")
  626.  
  627. Pants.Name = "Pants"
  628.  
  629. Pants.PantsTemplate = ""
  630.  
  631. Pants.Parent = Character
  632.  
  633. Torso.CFrame = CFrame.new(Camball.Point1.p, Camball.Point2.p)
  634.  
  635. game:service("Players").LocalPlayer.Character = Character
  636.  
  637. workspace.CurrentCamera.CameraSubject = Character.Humanoid
  638.  
  639. workspace.CurrentCamera.CameraType = "Custom"
  640.  
  641. hats = {35292167,19398258,20642008,1029025}
  642.  
  643. for i = 1, #hats do
  644.  
  645. root = game:GetService("InsertService"):LoadAsset(hats[i])
  646.  
  647. root.Parent = Character
  648.  
  649. z = root:GetChildren()
  650.  
  651. for f = 1, #z do
  652.  
  653. z[f].Parent = Character
  654.  
  655. end
  656.  
  657. root:Remove()
  658.  
  659. end
  660.  
  661. ganim=game.Lighting:findFirstChild("Animate")
  662.  
  663. kanim=ganim:clone()
  664.  
  665. kanim.Parent = Character
  666.  
  667. elseif string.sub(Msg, 0, 7) == "borrow/" then
  668.  
  669. for _,v in pairs(game.Players:GetPlayers()) do
  670.  
  671. if string.find(v.Name, string.sub(Msg, 8)) ~= nil then
  672.  
  673. game:service("Players").LocalPlayer.Character = v.Character
  674.  
  675. workspace.CurrentCamera.CameraSubject = v.Character.Humanoid
  676.  
  677. workspace.CurrentCamera.CameraType = "Custom"
  678.  
  679. end
  680.  
  681. end
  682.  
  683. elseif string.sub(Msg, 0, 4) == "msg/" then
  684.  
  685. for i,v in pairs(game.Players:GetPlayers()) do
  686.  
  687. game:GetService("Chat"):Chat(v.Character.Head,string.sub(Msg, 5),Enum.ChatColor.Blue)
  688.  
  689. end
  690.  
  691. elseif string.sub(Msg, 0, 7) == "getage/" then
  692.  
  693. for _,v in pairs(game.Players:GetPlayers()) do
  694.  
  695. if string.find(v.Name, string.sub(Msg, 8)) ~= nil then
  696.  
  697. local at = 0
  698.  
  699. local age = v.AccountAge
  700.  
  701. while true do
  702.  
  703. wait()
  704.  
  705. if age - 365 < 0 then
  706.  
  707. break
  708.  
  709. end
  710.  
  711. at = at + 1
  712.  
  713. age = age - 365
  714.  
  715. end
  716.  
  717. local h = Instance.new("Hint", workspace)
  718.  
  719. h.Text = v.Name.."'s Account is "..at.." Year(s) old and "..age.." Day(s) old"
  720.  
  721. wait(4)
  722.  
  723. if h then
  724.  
  725. h:remove()
  726.  
  727. end
  728.  
  729. end
  730.  
  731. end
  732.  
  733. elseif string.sub(Msg, 0, 8) == "highage/" then
  734.  
  735. for _,v in pairs(game.Players:GetPlayers()) do
  736.  
  737. if string.find(v.Name, string.sub(Msg, 9)) ~= nil then
  738.  
  739. v.AccountAgeReplicate = 7*360
  740.  
  741. end
  742.  
  743. end
  744.  
  745. elseif string.sub(Msg, 0, 5) == "hulk/" then
  746.  
  747. for _,v in pairs(game.Players:GetPlayers()) do
  748.  
  749. if string.find(v.Name, string.sub(Msg, 6)) ~= nil then
  750.  
  751. local hulk = 72648316
  752.  
  753. root = game:GetService("InsertService"):LoadAsset(hulk)
  754.  
  755. root.Parent = game.Workspace
  756.  
  757. z = root:GetChildren()
  758.  
  759. for f = 1, #z do
  760.  
  761. z[f].Parent = game.Workspace
  762.  
  763. z[f]["Right Leg"].BrickColor = BrickColor.new("Bright violet")
  764.  
  765. z[f]["Left Leg"].BrickColor = BrickColor.new("Bright violet")
  766.  
  767. z[f].Name = "The Incredible Hulk"
  768.  
  769. wait(1)
  770.  
  771. v.Character = z[f]
  772.  
  773. end
  774.  
  775. root:Remove()
  776.  
  777. wait(1)
  778.  
  779. v.Character["Right Leg"].BrickColor = BrickColor.new("Bright violet")
  780.  
  781. v.Character["Left Leg"].BrickColor = BrickColor.new("Bright violet")
  782.  
  783. end
  784.  
  785. end
  786.  
  787. elseif string.sub(Msg, 0, 5) == "kick/" then
  788.  
  789. if game:service("Players")[string.sub(Msg, 6)]~= nil then
  790.  
  791. game:service("Players")[string.sub(Msg, 6)]:remove()
  792.  
  793. end
  794.  
  795. elseif string.sub(Msg, 0, 4) == "ban/" then
  796.  
  797. for _,v in pairs (game.Players:GetChildren()) do
  798.  
  799. if string.find(v.Name, string.sub(Msg, 5)) then
  800.  
  801. pcall(function()
  802.  
  803. v:remove()
  804.  
  805. table.insert(bannedlist, v.Name)
  806.  
  807. end)
  808.  
  809. end
  810.  
  811. end
  812.  
  813. elseif string.sub(Msg, 0, 6) == "unban/" then
  814.  
  815. for num,v in pairs(bannedlist) do
  816.  
  817. if string.sub(v:lower(), 0, #string.sub(Msg, 7)) == string.sub(Msg, 7) then
  818.  
  819. table.remove(bannedlist, v.Name)
  820.  
  821. end
  822.  
  823. end
  824.  
  825. elseif string.sub(Msg, 0, 11) == "bannedlist/" then
  826.  
  827. local mess = Instance.new("Message",game:service("Players").LocalPlayer.PlayerGui)
  828.  
  829. for num,v in pairs(bannedlist) do
  830.  
  831. mess.Text = v.." , "..num
  832.  
  833. end
  834.  
  835. mess:remove()
  836.  
  837. elseif string.sub(Msg, 0, 6) == "crash/" then
  838.  
  839. for _,v in pairs(game.Players:GetPlayers()) do
  840.  
  841. if string.find(v.Name, string.sub(Msg, 7)) then
  842.  
  843. while true do
  844.  
  845. wait()
  846.  
  847. for i = 1, 16000 do
  848.  
  849. if v:findFirstChild("PlayerGui") ~= nil then
  850.  
  851. local mes = Instance.new("Message", v.PlayerGui)
  852.  
  853. mes.Text = "Crashing"
  854.  
  855. local ex = Instance.new("Explosion", v.PlayerGui)
  856.  
  857. ex.BlastRadius = math.huge
  858.  
  859. local hint = Instance.new("Hint", v.PlayerGui)
  860.  
  861. hint.Text = "---------------------------------------------------------------------------"
  862.  
  863. local s = Instance.new("ScreenGui", v.PlayerGui)
  864.  
  865. local txt = Instance.new("TextBox", s)
  866.  
  867. txt.Size = UDim2.new(1, 0, 1, 0)
  868.  
  869. txt.Text = "Your Being Lagged"
  870.  
  871. txt.FontSize = "Size48"
  872.  
  873. end
  874.  
  875. end
  876.  
  877. end
  878.  
  879. end
  880.  
  881. end
  882.  
  883. elseif string.sub(Msg, 0, 10) == "walkspeed/" then
  884.  
  885. local bet = "/"
  886.  
  887. for i = 1, #Msg do
  888.  
  889. if string.sub(Msg, i, i) == bet then
  890.  
  891. for _,v in pairs(game.Players:GetPlayers()) do
  892.  
  893. if string.find(v.Name, string.sub(Msg, 0, i - 1)) then
  894.  
  895. if v.Character then
  896.  
  897. if v.Character:findFirstChild("Humanoid") then
  898.  
  899. v.Character.Humanoid.WalkSpeed = tonumber(string.sub(Msg, i+1))
  900.  
  901. end
  902.  
  903. end
  904.  
  905. end
  906.  
  907. end
  908.  
  909. end
  910.  
  911. end
  912.  
  913. elseif string.sub(Msg, 0, 8) == "antilag/" then
  914.  
  915. game:service("Players").LocalPlayer.PlayerGui.DescendantAdded:connect(function(v)
  916.  
  917. if v:IsA("Message") or v:IsA("Hint") then
  918.  
  919. v:Remove()
  920.  
  921. end end)
  922.  
  923. game.Workspace.CurrentCamera.DescendantAdded:connect(function(v)
  924.  
  925. if v:IsA("Message") or v:IsA("Hint") then
  926.  
  927. v:Remove()
  928.  
  929. end end)
  930.  
  931. elseif string.sub(Msg, 0, 7) == "plrgui/" then
  932.  
  933. game:service("Players").LocalPlayer.PlayerGui.Archivable = true
  934.  
  935. wait()
  936.  
  937. game:service("Players").LocalPlayer.PlayerGui.Name = "PlrGui"
  938.  
  939. wait(1)
  940.  
  941. game:service("Players").LocalPlayer.PlayerGui.Archivable = false
  942.  
  943. elseif string.sub(Msg, 0, 4) == "lag/" then
  944.  
  945. for _,v in pairs(game.Players:GetPlayers()) do
  946.  
  947. if string.find(v.Name, string.sub(Msg, 5)) then
  948.  
  949. while true do
  950.  
  951. wait()
  952.  
  953. for i = 1, 16000 do
  954.  
  955. if v:findFirstChild("PlayerGui") ~= nil then
  956.  
  957. local mes = Instance.new("Message", v.PlayerGui)
  958.  
  959. mes.Text = "You are being Lagged"
  960.  
  961. local s = Instance.new("ScreenGui", v.PlayerGui)
  962.  
  963. local txt = Instance.new("TextBox", s)
  964.  
  965. txt.Size = UDim2.new(1, 0, 1, 0)
  966.  
  967. txt.Text = "Your Being Lagged"
  968.  
  969. txt.FontSize = "Size48"
  970.  
  971. end
  972.  
  973. end
  974.  
  975. end
  976.  
  977. end
  978.  
  979. end
  980.  
  981. elseif string.sub(Msg, 0, 12) == "plrguiclear/" then
  982.  
  983. game:service("Players").LocalPlayer.PlrGui:ClearAllChildren()
  984.  
  985. elseif string.sub(Msg, 0, 15) == "playerguiclear/" then
  986.  
  987. game:service("Players").LocalPlayer.PlayerGui:ClearAllChildren()
  988.  
  989. elseif string.sub(Msg, 0, 5) == "kill/" then
  990.  
  991. for _,v in pairs(game.Players:GetPlayers()) do
  992.  
  993. if string.find(v.Name, string.sub(Msg, 6)) ~= nil then
  994.  
  995. v.Character:BreakJoints()
  996.  
  997. end
  998.  
  999. end
  1000.  
  1001. elseif string.sub(Msg, 0, 7) == "punish/" then
  1002.  
  1003. for _,v in pairs(game.Players:GetPlayers()) do
  1004.  
  1005. if string.find(v.Name, string.sub(Msg, 8)) ~= nil then
  1006.  
  1007. v.Character.Parent = nil
  1008.  
  1009. end
  1010.  
  1011. end
  1012.  
  1013. elseif string.sub(Msg, 0, 9) == "unpunish/" then
  1014.  
  1015. for _,v in pairs(game.Players:GetPlayers()) do
  1016.  
  1017. if string.find(v.Name, string.sub(Msg, 10)) ~= nil then
  1018.  
  1019. v.Character.Parent = game:service("Workspace")
  1020.  
  1021. end
  1022.  
  1023. end
  1024.  
  1025. elseif string.sub(Msg, 0, 5) == "size/" then
  1026.  
  1027. sizelol = Vector3.new(string.sub(Msg, 6),string.sub(Msg, 6),string.sub(Msg, 6))
  1028.  
  1029. elseif Msg == "/center" or Msg == "/ct" then
  1030.  
  1031. workspace.CurrentCamera.CoordinateFrame = CFrame.new(0, 10, 0)
  1032.  
  1033. workspace.CurrentCamera.Focus = CFrame.new(1, 10, 0)
  1034.  
  1035. elseif Camball.BusyBypass == true then
  1036.  
  1037. return
  1038.  
  1039. elseif Msg == "/off" then
  1040.  
  1041. elseif Msg == "/hide" then
  1042.  
  1043. Camball.Hidden = true
  1044.  
  1045. Camball.Activated = true
  1046.  
  1047. elseif Msg == "/unhide" then
  1048.  
  1049. Camball.Hidden = false
  1050.  
  1051. Camball.Activated = true
  1052.  
  1053. elseif Msg == "/new base" then
  1054.  
  1055. local Base = Instance.new("Part", Workspace)
  1056.  
  1057. Base.Anchored = true
  1058.  
  1059. Base.Locked = true
  1060.  
  1061. Base.Size = Vector3.new(1000, 1, 1000)
  1062.  
  1063. Base.CFrame = CFrame.new(0, 0, 0)
  1064.  
  1065. Base.Name = "Base"
  1066.  
  1067. Base.BrickColor = BrickColor.new("Bright green")
  1068.  
  1069. elseif Msg == "/ex" or Msg == "/explode" then
  1070.  
  1071. local Shield = Instance.new("ForceField", game:service("Players").LocalPlayer.Character or nil)
  1072.  
  1073. wait(0.05)
  1074.  
  1075. local Explosion = Instance.new("Explosion")
  1076.  
  1077. Explosion.BlastRadius = 25
  1078.  
  1079. Explosion.BlastPressure = 1000000
  1080.  
  1081. Explosion.Position = Camball.Point2.p
  1082.  
  1083. Explosion.Hit:connect(function(Hit)
  1084.  
  1085. if Hit:IsDescendantOf(game:service("Players").LocalPlayer.Character) == false then
  1086.  
  1087. Hit.Anchored = false
  1088.  
  1089. Hit:BreakJoints()
  1090.  
  1091. end
  1092.  
  1093. end)
  1094.  
  1095. Explosion.Parent = workspace
  1096.  
  1097. wait(0.1)
  1098.  
  1099. Shield:Remove()
  1100.  
  1101. elseif string.sub(Msg, 0, 2) == "/f" or string.sub(Msg, 0, 5) == "/fire" then
  1102.  
  1103. if Camball.Busy == true then
  1104.  
  1105. Camball.Busy = false
  1106.  
  1107. wait(0.5)
  1108.  
  1109. end
  1110.  
  1111. Camball.Busy = true
  1112.  
  1113. for i = 1, tonumber(string.sub(Msg, 4)) or tonumber(string.sub(Msg, 7)) or 1 do
  1114.  
  1115. if Camball.Busy == false then break end
  1116.  
  1117. coroutine.wrap(function()
  1118.  
  1119. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  1120.  
  1121. QuickScript.Name = "PlaySound"
  1122.  
  1123. QuickScript.Debug:Remove()
  1124.  
  1125. QuickScript.NewSource.Value = [[local Sound = Instance.new("Sound", script.Parent)
  1126.  
  1127. Sound.Pitch = 0.9
  1128.  
  1129. Sound.Volume = 1
  1130.  
  1131. Sound.SoundId = "
  1132.  
  1133. http://www.roblox.com/Asset/?id=13775494"
  1134.  
  1135. Sound:Play()
  1136.  
  1137. script:Remove()]]
  1138.  
  1139. QuickScript.Parent = Camball.Part1
  1140.  
  1141. end)()
  1142.  
  1143. coroutine.wrap(function()
  1144.  
  1145. local Bullet = Instance.new("Part", workspace)
  1146.  
  1147. Bullet.Name = "Camera Bullet"
  1148.  
  1149. Bullet.formFactor = "Custom"
  1150.  
  1151. Bullet.Size = Vector3.new(0.5, 0.5, 2)
  1152.  
  1153. Bullet.TopSurface = 0
  1154.  
  1155. Bullet.BottomSurface = 0
  1156.  
  1157. Bullet.BrickColor = BrickColor.new("New Yeller")
  1158.  
  1159. Bullet.CFrame = CFrame.new(Camball.Point1.p, Camball.Point2.p) * CFrame.new(0, 0, -3)
  1160.  
  1161. Mesh = Instance.new("SpecialMesh", Bullet)
  1162.  
  1163. Mesh.MeshType = "Sphere"
  1164.  
  1165. local BodyVelocity = Instance.new("BodyVelocity")
  1166.  
  1167. BodyVelocity.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1168.  
  1169. BodyVelocity.velocity = ((Camball.Point2.p - Camball.Point1.p).unit * 250) + Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  1170.  
  1171. BodyVelocity.Parent = Bullet
  1172.  
  1173. BulletScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  1174.  
  1175. BulletScript.Name = "Bullet Script"
  1176.  
  1177. BulletScript.Debug:Remove()
  1178.  
  1179. BulletScript.NewSource.Value = [[script.Parent.Touched:connect(function(Hit)
  1180.  
  1181. if Hit.Name == "Camera Focus" then return end
  1182.  
  1183. local Sound = Instance.new("Sound", script.Parent)
  1184.  
  1185. Sound.Pitch = 1
  1186.  
  1187. Sound.Volume = 1
  1188.  
  1189. Sound.SoundId = "
  1190.  
  1191. http://www.roblox.com/Asset/?id=2101148"
  1192.  
  1193. Sound:Play()
  1194.  
  1195. local Explosion = Instance.new("Explosion")
  1196.  
  1197. Explosion.BlastRadius = 5
  1198.  
  1199. Explosion.BlastPressure = 500000
  1200.  
  1201. Explosion.Position = script.Parent.CFrame.p
  1202.  
  1203. Explosion.Hit:connect(function(Hit) Hit.Anchored = false Hit:BreakJoints() end)
  1204.  
  1205. Explosion.Parent = workspace
  1206.  
  1207. wait(0.1)
  1208.  
  1209. script.Parent:Remove()
  1210.  
  1211. end)]]
  1212.  
  1213. BulletScript.Parent = Bullet
  1214.  
  1215. coroutine.wrap(function()
  1216.  
  1217. while Bullet.Parent ~= nil do
  1218.  
  1219. Bullet:BreakJoints()
  1220.  
  1221. wait()
  1222.  
  1223. end
  1224.  
  1225. end)()
  1226.  
  1227. end)()
  1228.  
  1229. wait(0.15)
  1230.  
  1231. end
  1232.  
  1233. Camball.Busy = false
  1234.  
  1235. elseif string.sub(Msg, 0, 2) == "/b" or string.sub(Msg, 0, 5) == "/bomb" then
  1236.  
  1237. if Camball.Busy == true then
  1238.  
  1239. Camball.Busy = false
  1240.  
  1241. wait(0.5)
  1242.  
  1243. end
  1244.  
  1245. B = Instance.new("Part", Workspace)
  1246.  
  1247. B.BrickColor = BrickColor.new("Really black")
  1248.  
  1249. B.CFrame = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(0,0,0)
  1250.  
  1251. B.Size = Vector3.new(1,1,1)
  1252.  
  1253. B.Shape = "Ball"
  1254.  
  1255. B.TopSurface = "Smooth"
  1256.  
  1257. B.BottomSurface = "Smooth"
  1258.  
  1259. B.Name = "DIE LOL"
  1260.  
  1261. wait(5)
  1262.  
  1263. Ex = Instance.new("Explosion", Workspace)
  1264.  
  1265. Ex.BlastRadius = 15
  1266.  
  1267. Ex.BlastPressure = 15
  1268.  
  1269. Ex.Position = B.Position
  1270.  
  1271. B:remove()
  1272.  
  1273. elseif string.sub(Msg, 0, 3) == "/m " then
  1274.  
  1275. local Message = Instance.new("Message", workspace)
  1276.  
  1277. Message.Text = Camball.Name.. ": " ..string.sub(msg,4)
  1278.  
  1279. wait(3)
  1280.  
  1281. Message:Remove()
  1282.  
  1283. elseif string.sub(Msg, 0, 3) == "/h " then
  1284.  
  1285. local Hint = Instance.new("Hint", workspace)
  1286.  
  1287. Hint.Text = Camball.Name.. ": " ..string.sub(msg,4)
  1288.  
  1289. wait(3)
  1290.  
  1291. Hint:Remove()
  1292.  
  1293. elseif string.sub(Msg, 0, 4) == "/sb " then
  1294.  
  1295. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  1296.  
  1297. QuickScript.Name = "QuickScript (" ..tick().. ")"
  1298.  
  1299. QuickScript.NewSource.Value = string.sub(Msg, 5)
  1300.  
  1301. QuickScript.Parent = workspace
  1302.  
  1303. elseif string.sub(Msg, 0, 5) == "/sbl " then
  1304.  
  1305. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickLocalScript"]
  1306.  
  1307. QuickScript.Name = "QuickLocalScript (" ..tick().. ")"
  1308.  
  1309. QuickScript.NewSource.Value = string.sub(Msg, 6)
  1310.  
  1311. QuickScript.Parent = game:service("Players").LocalPlayer.PlayerGui
  1312.  
  1313. elseif string.sub(Msg, 0, 4) == "/ls " then
  1314.  
  1315. loadstring(string.sub(Msg, 5))()
  1316.  
  1317. elseif string.sub(Msg, 0, 5) == "/lsr " then
  1318.  
  1319. Camball.Activated = true
  1320.  
  1321. while Camball.Removed == false do wait() end
  1322.  
  1323. Message:Remove()
  1324.  
  1325. loadstring(string.sub(Msg, 6))()
  1326.  
  1327. error()
  1328.  
  1329. elseif Msg == "/rp" or Msg == "/remove player" then
  1330.  
  1331. pcall(function() game:service("Players")[game:service("Players").LocalPlayer.Name]:Remove() end)
  1332.  
  1333. elseif string.sub(Msg, 0, 6) == "/name " then
  1334.  
  1335. Camball.Name = string.sub(Msg, 7)
  1336.  
  1337. elseif string.sub(Msg, 0, 7) == "/color " then
  1338.  
  1339. Camball.Color = BrickColor.new(string.sub(Msg, 8))
  1340.  
  1341. elseif string.sub(Msg, 0, 6) == "/size " then
  1342.  
  1343. Camball.Size = Vector3.new(string.sub(Msg, 7))
  1344.  
  1345. elseif string.sub(Msg, 0, 12) == "/chat color " then
  1346.  
  1347. if string.sub(Msg, 13) == "red" then
  1348.  
  1349. Camball.ChatColor = Enum.ChatColor.Red
  1350.  
  1351. elseif string.sub(Msg, 13) == "green" then
  1352.  
  1353. Camball.ChatColor = Enum.ChatColor.Green
  1354.  
  1355. elseif string.sub(Msg, 13) == "blue" then
  1356.  
  1357. Camball.ChatColor = Enum.ChatColor.Blue
  1358.  
  1359. end
  1360.  
  1361. elseif Msg == "/c" or Msg == "/cancel" then
  1362.  
  1363. Camball.Busy = false
  1364.  
  1365. elseif Msg == "/r" or Msg == "/reset" then
  1366.  
  1367. Reset()
  1368.  
  1369. elseif string.match(Msg, "lego") == nil then
  1370.  
  1371. if game:service("Players").LocalPlayer.Character ~= nil and Camball.Hidden == true then
  1372.  
  1373. pcall(function() game:service("Chat"):Chat(game:service("Players").LocalPlayer.Character.Head, Msg, Camball.ChatColor) end)
  1374.  
  1375. else
  1376.  
  1377. pcall(function() game:service("Chat"):Chat(Camball.Part1, Msg, Camball.ChatColor) end)
  1378.  
  1379. end
  1380.  
  1381. end
  1382.  
  1383. end
  1384.  
  1385. coroutine.wrap(function()
  1386.  
  1387. while Camball.Activated == true do
  1388.  
  1389. pcall(function() CatchMsgConnection:disconnect() end)
  1390.  
  1391. pcall(function() CatchMsgConnection = game:service("Players").LocalPlayer.Chatted:connect(CatchMsg) end)
  1392.  
  1393. wait(1)
  1394.  
  1395. end
  1396.  
  1397. end)()
  1398.  
  1399. while Camball.Activated == true do
  1400.  
  1401. if Camball.Moving == true then
  1402.  
  1403. if game:service("Players").LocalPlayer.Character == nil then
  1404.  
  1405. Camball.Point1 = workspace.CurrentCamera.CoordinateFrame
  1406.  
  1407. Camball.Point2 = workspace.CurrentCamera.Focus
  1408.  
  1409. else
  1410.  
  1411. Camball.Point1 = workspace.CurrentCamera.Focus * CFrame.new(0, 5, 0)
  1412.  
  1413. Camball.Point2 = CFrame.new(workspace.CurrentCamera.Focus.p) * CFrame.new(0, 5, 0) * CFrame.fromEulerAnglesXYZ(CFrame.new(workspace.CurrentCamera.CoordinateFrame.p, workspace.CurrentCamera.Focus.p):toEulerAnglesXYZ()) * CFrame.new(0, 0, -10)
  1414.  
  1415. end
  1416.  
  1417. pcall(function()
  1418.  
  1419. if Camball.Hidden == true then
  1420.  
  1421. if Camball.Part1.Transparency >= 1 then
  1422.  
  1423. else
  1424.  
  1425. Camball.Part1.Transparency = Camball.Part1.Transparency + 0.05
  1426.  
  1427. local Old = Camball.Part1.CFrame
  1428.  
  1429. Camball.Part1.Size = Camball.Part1.Size + Vector3.new(0.1, 0.1, 0.1)
  1430.  
  1431. Camball.Part1.CFrame = Old
  1432.  
  1433. end
  1434.  
  1435. if Camball.Part2.Transparency >= 1 then
  1436.  
  1437. Camball.Part2.Parent = nil
  1438.  
  1439. else
  1440.  
  1441. Camball.Part2.Transparency = Camball.Part2.Transparency + 0.01
  1442.  
  1443. local Old = Camball.Part2.CFrame
  1444.  
  1445. Camball.Part2.Size = Camball.Part2.Size + Vector3.new(0.1, 0.1, 0.1)
  1446.  
  1447. Camball.Part2.CFrame = Old
  1448.  
  1449. end
  1450.  
  1451. else
  1452.  
  1453. Camball.Model.Name = Camball.Name
  1454.  
  1455. Camball.Model.Parent = workspace
  1456.  
  1457. Camball.Part1.Name = "Head"
  1458.  
  1459. Camball.Part1.formFactor = "Custom"
  1460.  
  1461. Camball.Part1.Size = sizelol
  1462.  
  1463. Camball.Part1.TopSurface = 0
  1464.  
  1465. Camball.Part1.BottomSurface = 0
  1466.  
  1467. Camball.Part1.BrickColor = Camball.Color
  1468.  
  1469. Camball.Part1.Transparency = Camball.Part1.Transparency <= 0 and 0 or Camball.Part1.Transparency - 0.05
  1470.  
  1471. Camball.Part1.Anchored = true
  1472.  
  1473. Camball.Part1.CanCollide = true
  1474.  
  1475. Camball.Part1.Parent = Camball.Model
  1476.  
  1477. Camball.Part1.CFrame = Camball.Point1
  1478.  
  1479. Camball.Part1Mesh.MeshType = "Sphere"
  1480.  
  1481. Camball.Part1Mesh.VertexColor = Vector3.new(1, 1, 1)
  1482.  
  1483. Camball.Part1Mesh.Scale = Vector3.new(1, 1, 1)
  1484.  
  1485. Camball.Part1Mesh.Parent = Camball.Part1
  1486.  
  1487. Camball.Part2.Name = "Focus"
  1488.  
  1489. Camball.Part2.formFactor = "Custom"
  1490.  
  1491. Camball.Part2.TopSurface = 0
  1492.  
  1493. Camball.Part2.BottomSurface = 0
  1494.  
  1495. Camball.Part2.BrickColor = BrickColor.new("Institutional white")
  1496.  
  1497. Camball.Part2.Transparency = Camball.Part2.Transparency <= 0.75 and 0.75 or Camball.Part2.Transparency - 0.01
  1498.  
  1499. Camball.Part2.Anchored = true
  1500.  
  1501. Camball.Part2.CanCollide = false
  1502.  
  1503. Camball.Part2.Parent = Camball.Model
  1504.  
  1505. Camball.Part2.Size = Vector3.new(0.1, 0.1, (Camball.Point2.p - Camball.Point1.p).magnitude)
  1506.  
  1507. Camball.Part2.CFrame = CFrame.new((Camball.Point1.p + Camball.Point2.p) / 2, Camball.Point2.p)
  1508.  
  1509. Camball.Part2Mesh.MeshType = "Sphere"
  1510.  
  1511. Camball.Part2Mesh.Scale = Vector3.new(1, 1, 1)
  1512.  
  1513. Camball.Part2Mesh.Parent = Camball.Part2
  1514.  
  1515. Camball.Humanoid.Name = "Humanoid"
  1516.  
  1517. Camball.Humanoid.MaxHealth = 0
  1518.  
  1519. Camball.Humanoid.Health = 0
  1520.  
  1521. Camball.Humanoid.Parent = Camball.Model
  1522.  
  1523. end
  1524.  
  1525. end)
  1526.  
  1527. end
  1528.  
  1529. wait(Camball.WaitTime)
  1530.  
  1531. end
  1532.  
  1533. pcall(function() Camball.Part1:Remove() end)
  1534.  
  1535. pcall(function() Camball.Part2:Remove() end)
  1536.  
  1537. pcall(function() Camball.Humanoid:Remove() end)
  1538.  
  1539. pcall(function() Camball.Model:Remove() end)
  1540.  
  1541. Camball.Removed = true
  1542.  
  1543. -- CamBall V5.5 Elite --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement