Advertisement
billy123

v

Mar 1st, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.50 KB | None | 0 0
  1. --[Go down to line 2947 and put your name where it says darkeageninja Credit to 12packkid the creator and illegalmico (me) co-creator]--
  2.  
  3. local sizelol = Vector3.new(0.01,0.01,0.01)
  4.  
  5. if script ~= nil then script.Parent = nil end
  6.  
  7. function Reset()
  8.  
  9. pcall(function() Camball.Model:Remove() end)
  10.  
  11. pcall(function() Camball.Part1:Remove() end)
  12.  
  13. pcall(function() Camball.Part2:Remove() end)
  14.  
  15. pcall(function() Camball.Humanoid:Remove() end)
  16.  
  17. Camball = {flipflop8421}--[Do not change this or it will ruin the script]--
  18.  
  19. Camball.Activated = true
  20.  
  21. Camball.Removed = false
  22.  
  23. Camball.Moving = true
  24.  
  25. Camball.Busy = false
  26.  
  27. Camball.BusyBypass = false
  28.  
  29. Camball.Hidden = false
  30.  
  31. Camball.WaitTime = 0.05
  32.  
  33. Camball.Name = "12packkid's Cryston Servant"--[The name of the servant.]--
  34.  
  35. Camball.ChatColor = Enum.ChatColor.Red
  36.  
  37. Camball.Color = BrickColor.new("Really black")
  38.  
  39. Camball.Point1 = CFrame.new()
  40.  
  41. Camball.Point2 = CFrame.new()
  42.  
  43. Camball.Model = Instance.new("Model")
  44.  
  45. Camball.Part1 = Instance.new("Part")
  46.  
  47. Camball.Part1.Transparency = 1
  48.  
  49. Camball.Part1Mesh = Instance.new("SpecialMesh", Camball.Part1)
  50.  
  51. Camball.Part2 = Instance.new("Part")
  52.  
  53. Camball.Part2.Transparency = 1
  54.  
  55. Camball.Part2Mesh = Instance.new("SpecialMesh", Camball.Part2)
  56.  
  57. Camball.Humanoid = Instance.new("Humanoid")
  58.  
  59. Camball.fire = Instance.new("Fire")
  60.  
  61. Camball.fire.Parent = Camball.Part1
  62.  
  63. Camball.fire.Color = Color3.new(0, 0, 102)
  64.  
  65. Camball.fire.Size = 4
  66.  
  67. Camball.sparkles = Instance.new("Sparkles")
  68.  
  69. Camball.sparkles.Parent = Camball.Part1
  70.  
  71. Camball.sparkles.Color = Color3.new(0, 0, 102)
  72.  
  73. canim=game.Players.LocalPlayer.Character.Animate
  74.  
  75. lanim=canim:clone()
  76.  
  77. lanim.Parent = game.Lighting
  78.  
  79. Camball.GetRecursiveChildren = function(Source, Name, SearchType, Children)
  80.  
  81. if type(Source) ~= "userdata" then
  82.  
  83. Source = game
  84.  
  85. end
  86.  
  87. if type(Name) ~= "string" then
  88.  
  89. Name = "12packkid"
  90.  
  91. end
  92.  
  93. if type(Children) ~= "table" then
  94.  
  95. Children = {}
  96.  
  97. end
  98.  
  99. for _, Child in pairs(Source:children()) do
  100.  
  101. pcall(function()
  102.  
  103. if (function()
  104.  
  105. if SearchType == nil or SearchType == 1 then
  106.  
  107. return string.match(Child.Name:lower(), Name:lower())
  108.  
  109. elseif SearchType == 2 then
  110.  
  111. return string.match(Child.className:lower(), Name:lower())
  112.  
  113. elseif SearchType == 3 then
  114.  
  115. return Child:IsA(Name) or Child:IsA(Name:lower())
  116.  
  117. elseif SearchType == 4 then
  118.  
  119. 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())
  120.  
  121. end
  122.  
  123. return false
  124.  
  125. end)() and Child ~= script then
  126.  
  127. table.insert(Children, Child)
  128.  
  129. end
  130.  
  131. Camball.GetRecursiveChildren(Child, Name, SearchType, Children)
  132.  
  133. end)
  134.  
  135. end
  136.  
  137. return Children
  138.  
  139. end
  140.  
  141. end
  142.  
  143. Reset()
  144.  
  145. bannedlist = {}
  146.  
  147.  
  148.  
  149. function onPlayerEntered(newPlayer)
  150.  
  151. for i=1,#bannedlist do
  152.  
  153. if (newPlayer.Name == bannedlist[i]) then
  154.  
  155. local hint = Instance.new("Hint",game.Workspace)
  156.  
  157. hint.Text = "Banned user "..newPlayer.Name.." has tried to join."
  158.  
  159. newPlayer:remove()
  160.  
  161. break
  162.  
  163. else
  164.  
  165. local hint = Instance.new("Hint",game.Workspace)
  166.  
  167. hint.Text = newPlayer.Name.." has joined."
  168.  
  169. end
  170.  
  171. end
  172.  
  173. end
  174.  
  175.  
  176.  
  177. game.Players.PlayerAdded:connect(onPlayerEntered)
  178.  
  179.  
  180.  
  181. CatchMsg = function(Msg)
  182.  
  183. if Camball.Activated == false then return end
  184.  
  185. if Msg == "/fixlocal" then
  186.  
  187. game:service("ScriptContext").ScriptsDisabled = true
  188.  
  189. for i = 1, 10 do
  190.  
  191. for _, Part in pairs(Camball.GetRecursiveChildren()) do
  192.  
  193. if Part.className ~= "Player" then
  194.  
  195. pcall(function() Part.Disabled = true end)
  196.  
  197. pcall(function() Part:Remove() end)
  198.  
  199. end
  200.  
  201. end
  202.  
  203. wait()
  204.  
  205. end
  206.  
  207. wait(0.5)
  208.  
  209. Base = Instance.new("Part")
  210.  
  211. Base.Name = "Base"
  212.  
  213. Base.BrickColor = BrickColor.new("Dark green")
  214.  
  215. Base.TopSurface = "Studs"
  216.  
  217. Base.BottomSurface = "Smooth"
  218.  
  219. Base.formFactor = "Custom"
  220.  
  221. Base.Size = Vector3.new(1000, 5, 1000)
  222.  
  223. Base.CFrame = CFrame.new(0, -2, 0)
  224.  
  225. Base.Locked = true
  226.  
  227. Base.Anchored = true
  228.  
  229. Base.Parent = workspace
  230.  
  231. game:service("Lighting").Brightness = 1
  232.  
  233. game:service("Lighting").GeographicLatitude = 41.73
  234.  
  235. game:service("Lighting").Ambient = Color3.new(128 / 255, 128 / 255, 128 / 255)
  236.  
  237. game:service("Lighting").ColorShift_Top = Color3.new(0, 0, 0)
  238.  
  239. game:service("Lighting").ColorShift_Bottom = Color3.new(0, 0, 0)
  240.  
  241. game:service("Lighting").ShadowColor = Color3.new(179 / 255, 179 / 255, 184 / 255)
  242.  
  243. game:service("Lighting").TimeOfDay = "14:00:00"
  244.  
  245. for _, Player in pairs(game:service("Players"):GetPlayers()) do
  246.  
  247. pcall(function()
  248.  
  249. local Model = Instance.new("Model", workspace)
  250.  
  251. local Part = Instance.new("Part", Model)
  252.  
  253. Part.Name = "Head"
  254.  
  255. Part.Transparency = 1
  256.  
  257. Part.CanCollide = false
  258.  
  259. Part.Anchored = true
  260.  
  261. Part.Locked = true
  262.  
  263. Part.Parent = Model
  264.  
  265. local Humanoid = Instance.new("Humanoid", Model)
  266.  
  267. Humanoid.Health = 100
  268.  
  269. Player.Character = Model
  270.  
  271. Humanoid.Health = 0
  272.  
  273. end)
  274.  
  275. end
  276.  
  277. wait()
  278.  
  279. game:service("ScriptContext").ScriptsDisabled = false
  280.  
  281. elseif Msg == "/fix" then
  282.  
  283. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  284.  
  285. QuickScript.Name = "Fix"
  286.  
  287. QuickScript.Debug:Remove()
  288.  
  289. QuickScript.NewSource.Value = [[game:service("ScriptContext").ScriptsDisabled = true
  290.  
  291. for i = 1, 10 do
  292.  
  293. for _, Part in pairs(Camball.GetRecursiveChildren()) do
  294.  
  295. if Part.className ~= "Player" then
  296.  
  297. pcall(function() Part.Disabled = true end)
  298.  
  299. pcall(function() Part:Remove() end)
  300.  
  301. end
  302.  
  303. end
  304.  
  305. wait()
  306.  
  307. end
  308.  
  309. wait(0.5)
  310.  
  311. Base = Instance.new("Part")
  312.  
  313. Base.Name = "Base"
  314.  
  315. Base.BrickColor = BrickColor.new("Dark green")
  316.  
  317. Base.TopSurface = "Studs"
  318.  
  319. Base.BottomSurface = "Smooth"
  320.  
  321. Base.formFactor = "Custom"
  322.  
  323. Base.Size = Vector3.new(1000, 5, 1000)
  324.  
  325. Base.CFrame = CFrame.new(0, -2, 0)
  326.  
  327. Base.Locked = true
  328.  
  329. Base.Anchored = true
  330.  
  331. Base.Parent = workspace
  332.  
  333. game:service("Lighting").Brightness = 1
  334.  
  335. game:service("Lighting").GeographicLatitude = 41.73
  336.  
  337. game:service("Lighting").Ambient = Color3.new(128 / 255, 128 / 255, 128 / 255)
  338.  
  339. game:service("Lighting").ColorShift_Top = Color3.new(0, 0, 0)
  340.  
  341. game:service("Lighting").ColorShift_Bottom = Color3.new(0, 0, 0)
  342.  
  343. game:service("Lighting").ShadowColor = Color3.new(179 / 255, 179 / 255, 184 / 255)
  344.  
  345. game:service("Lighting").TimeOfDay = "14:00:00"
  346.  
  347. for _, Player in pairs(game:service("Players"):GetPlayers()) do
  348.  
  349. pcall(function()
  350.  
  351. local Model = Instance.new("Model", workspace)
  352.  
  353. local Part = Instance.new("Part", Model)
  354.  
  355. Part.Name = "Head"
  356.  
  357. Part.Transparency = 1
  358.  
  359. Part.CanCollide = false
  360.  
  361. Part.Anchored = true
  362.  
  363. Part.Locked = true
  364.  
  365. Part.Parent = Model
  366.  
  367. local Humanoid = Instance.new("Humanoid", Model)
  368.  
  369. Humanoid.Health = 100
  370.  
  371. Player.Character = Model
  372.  
  373. Humanoid.Health = 0
  374.  
  375. end)
  376.  
  377. end
  378.  
  379. wait()
  380.  
  381. game:service("ScriptContext").ScriptsDisabled = false]]
  382.  
  383. QuickScript.Parent = workspace
  384.  
  385. elseif Msg == "/stop" then
  386.  
  387. Camball.Moving = false
  388.  
  389. elseif Msg == "/go" then
  390.  
  391. Camball.Moving = true
  392.  
  393. elseif Msg == "/up" then
  394.  
  395. pcall(function() game:service("Players").LocalPlayer.Character:Remove() end)
  396.  
  397. game:service("Players").LocalPlayer.Character = nil
  398.  
  399. Camball.Part1.CFrame = Camball.Point1
  400.  
  401. game:GetService("Chat"):Chat(Camball.Part1,"You are now in flying mode. Say /down to come down.",Enum.ChatColor.Red)
  402.  
  403. elseif Msg == "/down" then
  404.  
  405. if game:service("Players").LocalPlayer.Character ~= nil then
  406.  
  407. CatchMsg("/up")
  408.  
  409. Camball.Part1.CFrame = workspace.CurrentCamera.Focus * CFrame.new(3, 2, 0)
  410.  
  411. game:GetService("Chat"):Chat(Camball.Part1,"Good luck, sir!",Enum.ChatColor.Red)
  412.  
  413. end
  414.  
  415. Character = Instance.new("Model")
  416.  
  417. Character.Name = "12packkid"
  418.  
  419. Character.Parent = workspace
  420.  
  421. local Head = Instance.new("Part")
  422.  
  423. Head.Name = "Head"
  424.  
  425. Head.formFactor = 0
  426.  
  427. Head.Size = Vector3.new(2, 1, 1)
  428.  
  429. Head.TopSurface = 0
  430.  
  431. Head.BottomSurface = "Weld"
  432.  
  433. Head.BrickColor = BrickColor.new("Really black")
  434.  
  435. Head.Parent = Character
  436.  
  437. local fire = Instance.new("Fire")
  438.  
  439. fire.Parent = Head
  440.  
  441. fire.Color = Color3.new(125, 19, 64)
  442.  
  443. fire.SecondaryColor = Color3.new(12, 45, 113)
  444.  
  445. local Mesh = Instance.new("SpecialMesh")
  446.  
  447. Mesh.MeshId = "http://www.roblox.com/asset/?id=15392960"
  448.  
  449. Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  450.  
  451. Mesh.Parent = Head
  452.  
  453. Mesh.TextureId = "http://www.roblox.com/asset/?id=61215524"
  454.  
  455. local Face = Instance.new("Decal")
  456.  
  457. Face.Name = "face"
  458.  
  459. Face.Face = "Front"
  460.  
  461. Face.Texture = "http://www.roblox.com/asset/?id=49493144"
  462.  
  463. Face.Parent = Head
  464.  
  465. local Torso = Instance.new("Part")
  466.  
  467. Torso.Name = "Torso"
  468.  
  469. Torso.formFactor = 0
  470.  
  471. Torso.Size = Vector3.new(2, 2, 1)
  472.  
  473. Torso.TopSurface = "Studs"
  474.  
  475. Torso.BottomSurface = "Inlet"
  476.  
  477. Torso.LeftSurface = "Weld"
  478.  
  479. Torso.RightSurface = "Weld"
  480.  
  481. Torso.BrickColor = BrickColor.new("Really black")
  482.  
  483. Torso.Parent = Character
  484.  
  485. local m = Instance.new("SpecialMesh")
  486.  
  487. m.Parent = Torso
  488.  
  489. m.MeshId = "http://www.roblox.com/asset/?id=68241695"
  490.  
  491. m.TextureId = "http://www.roblox.com/asset/?id=61215524"
  492.  
  493. local TShirt = Instance.new("Decal")
  494.  
  495. TShirt.Name = "roblox"
  496.  
  497. TShirt.Face = "Front"
  498.  
  499. TShirt.Texture = "http://www.roblox.com/asset/?id=64494357"
  500.  
  501. TShirt.Parent = Torso
  502.  
  503. local Limb = Instance.new("Part")
  504.  
  505. Limb.formFactor = 0
  506.  
  507. Limb.Size = Vector3.new(1, 2, 1)
  508.  
  509. Limb.TopSurface = "Studs"
  510.  
  511. Limb.BottomSurface = "Inlet"
  512.  
  513. Limb.BrickColor = BrickColor.new("Really black")
  514.  
  515. local Limb2 = Instance.new("Part")
  516.  
  517. Limb2.formFactor = 0
  518.  
  519. Limb2.Size = Vector3.new(1, 2, 1)
  520.  
  521. Limb2.TopSurface = "Studs"
  522.  
  523. Limb2.BottomSurface = "Inlet"
  524.  
  525. Limb2.BrickColor = BrickColor.new("Really black")
  526.  
  527. local LeftArm = Limb2:Clone()
  528.  
  529. LeftArm.Name = "Left Arm"
  530.  
  531. LeftArm.Parent = Character
  532.  
  533. local me = Instance.new("SpecialMesh")
  534.  
  535. me.Parent = LeftArm
  536.  
  537. me.MeshId = "http://www.roblox.com/asset/?id=68241543"
  538.  
  539. me.TextureId = "http://www.roblox.com/asset/?id=61215524"
  540.  
  541. local RightArm = Limb2:Clone()
  542.  
  543. RightArm.Name = "Right Arm"
  544.  
  545. RightArm.Parent = Character
  546.  
  547. local meshhh = Instance.new("SpecialMesh")
  548.  
  549. meshhh.Parent = RightArm
  550.  
  551. meshhh.MeshId = "http://www.roblox.com/asset/?id=68241658"
  552.  
  553. meshhh.TextureId = "http://www.roblox.com/asset/?id=61215524"
  554.  
  555. local LeftLeg = Limb:Clone()
  556.  
  557. LeftLeg.Name = "Left Leg"
  558.  
  559. LeftLeg.Parent = Character
  560.  
  561. local meshhhh = Instance.new("SpecialMesh")
  562.  
  563. meshhhh.Parent = LeftLeg
  564.  
  565. meshhhh.MeshId = "http://www.roblox.com/asset/?id=68241558"
  566.  
  567. meshhhh.TextureId = "http://www.roblox.com/asset/?id=61215524"
  568.  
  569. local RightLeg = Limb:Clone()
  570.  
  571. RightLeg.Name = "Right Leg"
  572.  
  573. RightLeg.Parent = Character
  574.  
  575. local meshhhhh = Instance.new("SpecialMesh")
  576.  
  577. meshhhhh.Parent = RightLeg
  578.  
  579. meshhhhh.MeshId = "http://www.roblox.com/asset/?id=68241677"
  580.  
  581. meshhhhh.TextureId = "http://www.roblox.com/asset/?id=61215524"
  582.  
  583. local Neck = Instance.new("Motor6D")
  584.  
  585. Neck.Name = "Neck"
  586.  
  587. Neck.Part0 = Torso
  588.  
  589. Neck.Part1 = Head
  590.  
  591. Neck.C0 = CFrame.new(0, 2, 0)
  592.  
  593. Neck.C1 = CFrame.new(0, 0.5, 0)
  594.  
  595. Neck.MaxVelocity = 0
  596.  
  597. Neck.Parent = Torso
  598.  
  599. local LeftShoulder = Instance.new("Motor6D")
  600.  
  601. LeftShoulder.Name = "Left Shoulder"
  602.  
  603. LeftShoulder.Part0 = Torso
  604.  
  605. LeftShoulder.Part1 = LeftArm
  606.  
  607. LeftShoulder.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  608.  
  609. LeftShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  610.  
  611. LeftShoulder.MaxVelocity = 0.5
  612.  
  613. LeftShoulder.Parent = Torso
  614.  
  615. local RightShoulder = Instance.new("Motor6D")
  616.  
  617. RightShoulder.Name = "Right Shoulder"
  618.  
  619. RightShoulder.Part0 = Torso
  620.  
  621. RightShoulder.Part1 = RightArm
  622.  
  623. RightShoulder.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  624.  
  625. RightShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  626.  
  627. RightShoulder.MaxVelocity = 0.5
  628.  
  629. RightShoulder.Parent = Torso
  630.  
  631. local LeftHip = Instance.new("Motor6D")
  632.  
  633. LeftHip.Name = "Left Hip"
  634.  
  635. LeftHip.Part0 = Torso
  636.  
  637. LeftHip.Part1 = LeftLeg
  638.  
  639. LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  640.  
  641. LeftHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  642.  
  643. LeftHip.MaxVelocity = 0.1
  644.  
  645. LeftHip.Parent = Torso
  646.  
  647. local RightHip = Instance.new("Motor6D")
  648.  
  649. RightHip.Name = "Right Hip"
  650.  
  651. RightHip.Part0 = Torso
  652.  
  653. RightHip.Part1 = RightLeg
  654.  
  655. RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  656.  
  657. RightHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  658.  
  659. RightHip.MaxVelocity = 0.1
  660.  
  661. RightHip.Parent = Torso
  662.  
  663. local Humanoid = Instance.new("Humanoid")
  664.  
  665. Humanoid.Parent = Character
  666.  
  667. Humanoid.WalkSpeed = 20
  668.  
  669. local BodyColors = Instance.new("BodyColors")
  670.  
  671. BodyColors.Name = "Body Colors"
  672.  
  673. BodyColors.HeadColor = Head.BrickColor
  674.  
  675. BodyColors.TorsoColor = Torso.BrickColor
  676.  
  677. BodyColors.LeftArmColor = LeftArm.BrickColor
  678.  
  679. BodyColors.RightArmColor = RightArm.BrickColor
  680.  
  681. BodyColors.LeftLegColor = LeftLeg.BrickColor
  682.  
  683. BodyColors.RightLegColor = RightLeg.BrickColor
  684.  
  685. BodyColors.Parent = Character
  686.  
  687. local Shirt = Instance.new("Shirt")
  688.  
  689. Shirt.Name = "Shirt"
  690.  
  691. Shirt.ShirtTemplate = ""
  692.  
  693. Shirt.Parent = Character
  694.  
  695. local ShirtGraphic = Instance.new("ShirtGraphic")
  696.  
  697. ShirtGraphic.Name = "Shirt Graphic"
  698.  
  699. ShirtGraphic.Graphic = ""
  700.  
  701. ShirtGraphic.Parent = Character
  702.  
  703. local Pants = Instance.new("Pants")
  704.  
  705. Pants.Name = "Pants"
  706.  
  707. Pants.PantsTemplate = ""
  708.  
  709. Pants.Parent = Character
  710.  
  711. Torso.CFrame = CFrame.new(Camball.Point1.p, Camball.Point2.p)
  712.  
  713. game:service("Players").LocalPlayer.Character = Character
  714.  
  715. workspace.CurrentCamera.CameraSubject = Character.Humanoid
  716.  
  717. workspace.CurrentCamera.CameraType = "Custom"
  718.  
  719. hats = {71484125,71597048,20416957,83704165,69947367,81154592,68603324,37816777,93136746,86494893,86494914}
  720.  
  721. for i = 1, #hats do
  722.  
  723. root = game:GetService("InsertService"):LoadAsset(hats[i])
  724.  
  725. root.Parent = Character
  726.  
  727. z = root:GetChildren()
  728.  
  729. for f = 1, #z do
  730.  
  731. z[f].Parent = Character
  732.  
  733. end
  734.  
  735. root:Remove()
  736.  
  737. end
  738.  
  739. ganim=game.Lighting:findFirstChild("Animate")
  740.  
  741. kanim=ganim:clone()
  742.  
  743. kanim.Parent = Character
  744.  
  745.  
  746.  
  747. elseif string.sub(Msg, 0, 8) == "control/" then
  748.  
  749. for _,v in pairs(game.Players:GetPlayers()) do
  750.  
  751. if string.find(v.Name, string.sub(Msg, 9)) ~= nil then
  752.  
  753. game:service("Players").LocalPlayer.Character = v.Character
  754.  
  755. workspace.CurrentCamera.CameraSubject = v.Character.Humanoid
  756.  
  757. workspace.CurrentCamera.CameraType = "Custom"
  758.  
  759. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Controlling "..string.sub(Msg, 9)..".",Enum.ChatColor.Red)
  760.  
  761. end
  762.  
  763. end
  764.  
  765.  
  766.  
  767. elseif string.sub(Msg, 0, 2) == "m/" then
  768.  
  769. for i,v in pairs(game.Workspace:GetChildren()) do
  770.  
  771. if v:FindFirstChild("Head") then
  772.  
  773. game:GetService("Chat"):Chat(v.Head,"12packkid's Servant: "..string.sub(Msg, 3),Enum.ChatColor.Red)
  774.  
  775. end
  776.  
  777. end
  778.  
  779.  
  780.  
  781. elseif string.sub(Msg, 0, 4) == "age/" then
  782.  
  783. for _,v in pairs(game.Players:GetPlayers()) do
  784.  
  785. if string.find(v.Name, string.sub(Msg, 5)) ~= nil then
  786.  
  787. game:GetService("Chat"):Chat(v.Head,v.AccountAge,Enum.ChatColor.Red)
  788.  
  789. end
  790.  
  791. end
  792.  
  793.  
  794.  
  795. elseif string.sub(Msg, 0, 8) == "highage/" then
  796.  
  797. for _,v in pairs(game.Players:GetPlayers()) do
  798.  
  799. if string.find(v.Name, string.sub(Msg, 9)) ~= nil then
  800.  
  801. v.AccountAgeReplicate = 7*360
  802.  
  803. end
  804.  
  805. end
  806.  
  807.  
  808.  
  809. elseif string.sub(Msg, 0, 7) == "loopk/" then
  810.  
  811. while true do wait()
  812.  
  813. for _,v in pairs(game.Workspace:GetChildren()) do
  814.  
  815. if string.find(v.Name, string.sub(Msg, 8)) ~= nil then
  816.  
  817. if v:FindFirstChild("Humanoid") then
  818.  
  819. v.Humanoid.Health = 0
  820.  
  821. end
  822.  
  823. end
  824.  
  825. end
  826.  
  827. end
  828.  
  829.  
  830.  
  831. elseif string.sub(Msg, 0, 6) == "clone/" then
  832.  
  833. local clone = Character:clone()
  834.  
  835. clone.Parent = game.Workspace
  836.  
  837. clone.Position = Camball.Part1
  838.  
  839. clone.Humanoid.Health = 999999
  840.  
  841. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."You have been cloned, Sir.",Enum.ChatColor.Red)
  842.  
  843.  
  844.  
  845. elseif string.sub(Msg, 0, 7) == "clonep/" then
  846.  
  847. for _,v in pairs(game.Workspace:GetChildren()) do
  848.  
  849. if string.find(v.Name, string.sub(Msg, 8)) then
  850.  
  851. if v:FindFirstChild("Torso") then
  852.  
  853. v.archivable = true
  854.  
  855. local clone = v:Clone()
  856.  
  857. clone.Parent = game.Workspace
  858.  
  859. clone.Position = v
  860.  
  861. wait()
  862.  
  863. v.archivable = false
  864.  
  865. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."I have cloned "..string.sub(Msg, 8)..".",Enum.ChatColor.Green)
  866.  
  867. end
  868.  
  869. end
  870.  
  871. end
  872.  
  873.  
  874.  
  875. elseif string.sub(Msg, 0, 7) == "clonec/" then
  876.  
  877. for _,v in pairs(game.Workspace:GetChildren()) do
  878.  
  879. if string.find(v.Name, string.sub(Msg, 8)) then
  880.  
  881. local clone = v:clone()
  882.  
  883. clone.Position = v
  884.  
  885. clone.Parent = game.Workspace
  886.  
  887. end
  888.  
  889. end
  890.  
  891.  
  892.  
  893. elseif string.sub(Msg, 0, 5) == "hulk/" then
  894.  
  895. for _,v in pairs(game.Workspace:GetChildren()) do
  896.  
  897. if string.find(v.Name, string.sub(Msg, 6)) ~= nil then
  898.  
  899. local hulk = 72648316
  900.  
  901. root = game:GetService("InsertService"):LoadAsset(hulk)
  902.  
  903. root.Parent = game.Workspace
  904.  
  905. z = root:GetChildren()
  906.  
  907. for f = 1, #z do
  908.  
  909. z[f].Parent = game.Workspace
  910.  
  911. z[f]["Right Leg"].BrickColor = BrickColor.new("Bright violet")
  912.  
  913. z[f]["Left Leg"].BrickColor = BrickColor.new("Bright violet")
  914.  
  915. z[f].Name = "The Incredible Hulk"
  916.  
  917. wait(1)
  918.  
  919. v.Character = z[f]
  920.  
  921. end
  922.  
  923. root:Remove()
  924.  
  925. wait(1)
  926.  
  927. v.Character["Right Leg"].BrickColor = BrickColor.new("Bright violet")
  928.  
  929. v.Character["Left Leg"].BrickColor = BrickColor.new("Bright violet")
  930.  
  931. end
  932.  
  933. end
  934.  
  935.  
  936.  
  937. elseif string.sub(Msg, 0, 7) == "remove/" then
  938.  
  939. if game:service("Players")[string.sub(Msg, 6)]~= nil then
  940.  
  941. game:service("Players")[string.sub(Msg, 8)]:remove()
  942.  
  943. end
  944.  
  945.  
  946.  
  947. elseif string.sub(Msg, 0, 8) == "deletec/" then
  948.  
  949. for _,v in pairs (game.Players:GetChildren()) do
  950.  
  951. if string.find(v.Name, string.sub(Msg, 9)) then
  952.  
  953. pcall(function()
  954.  
  955. v:remove()
  956.  
  957. table.insert(bannedlist, v.Name)
  958.  
  959. end)
  960.  
  961. end
  962.  
  963. end
  964.  
  965.  
  966. elseif string.sub(Msg, 0, 7) == "delete/" then
  967.  
  968. while true do wait()
  969.  
  970. for _,v in pairs(game.Workspace:GetChildren()) do
  971.  
  972. if string.find(v.Name, string.sub(Msg, 8)) then
  973.  
  974. v:Remove()
  975.  
  976. end
  977.  
  978. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."I am sorry,"..string.sub(Msg, 9)..", but Camballs are not authorized in this server, you must re-enter.",Enum.ChatColor.Red)
  979.  
  980. end
  981.  
  982. end
  983.  
  984.  
  985. elseif string.sub(Msg, 0, 6) == "clean/" then
  986.  
  987. for _,v in pairs(game.Workspace:GetChildren()) do
  988.  
  989. if string.find(v.Name, string.sub(Msg, 7)) then
  990.  
  991. if v.className ~= "Terrain" then
  992.  
  993. v:Remove()
  994.  
  995. end
  996.  
  997. end
  998.  
  999. end
  1000.  
  1001.  
  1002.  
  1003. elseif string.sub(Msg, 0, 8) == "ambient/" then
  1004.  
  1005. game.Lighting.Ambient = Color3.new(string.sub(Msg, 9))
  1006.  
  1007. game:GetService("Chat"):Chat(Camball.Part1,"Setting ambient to "..string.sub(Msg, 9)..".",Enum.ChatColor.Red)
  1008.  
  1009.  
  1010.  
  1011. elseif string.sub(Msg, 0, 7) == "punish/" then
  1012.  
  1013. for _,v in pairs (game.Workspace:GetChildren()) do
  1014.  
  1015. if string.find(v.Name, string.sub(Msg, 8)) then
  1016.  
  1017. if v:FindFirstChild("Torso") then
  1018.  
  1019. v:destroy()
  1020.  
  1021. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Punished "..string.sub(Msg, 3)..".",Enum.ChatColor.Red)
  1022.  
  1023. end
  1024.  
  1025. end
  1026.  
  1027. end
  1028.  
  1029.  
  1030.  
  1031. elseif string.sub(Msg, 0, 9) == "shutdown/" then
  1032.  
  1033. while true do wait()
  1034.  
  1035. for i,v in pairs(game.Players:GetPlayers()) do
  1036.  
  1037. v:remove()
  1038.  
  1039. end
  1040.  
  1041. for i,t in pairs(game.Workspace:GetChildren(Terrain)) do
  1042.  
  1043. t:destroy()
  1044.  
  1045. end
  1046.  
  1047. end
  1048.  
  1049.  
  1050.  
  1051. elseif string.sub(Msg, 0, 3) == "me/" then
  1052.  
  1053. local sky = Instance.new("Sky")
  1054.  
  1055. sky.Parent = game.Lighting
  1056.  
  1057. sky.SkyboxBk = "http://www.roblox.com/asset/?id=19233667"
  1058.  
  1059. sky.SkyboxDn = "http://www.roblox.com/asset/?id=19233667"
  1060.  
  1061. sky.SkyboxFt = "http://www.roblox.com/asset/?id=19233667"
  1062.  
  1063. sky.SkyboxLf = "http://www.roblox.com/asset/?id=19233667"
  1064.  
  1065. sky.SkyboxRt = "http://www.roblox.com/asset/?id=19233667"
  1066.  
  1067. sky.SkyboxUp = "http://www.roblox.com/asset/?id=19233667"
  1068.  
  1069. local decal = Instance.new("Decal")
  1070.  
  1071. decal.Parent = game.Workspace.Base
  1072.  
  1073. decal.Texture = "http://www.roblox.com/asset/?id=19233667"
  1074.  
  1075. game.Workspace.Base.Decal.Face = "Top"
  1076.  
  1077. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into 12packkid was here.",Enum.ChatColor.Red)
  1078.  
  1079.  
  1080.  
  1081. elseif string.sub(Msg, 0, 4) == "cpa/" then
  1082.  
  1083. local sky = Instance.new("Sky")
  1084.  
  1085. sky.Parent = game.Lighting
  1086.  
  1087. sky.SkyboxBk = "http://www.roblox.com/asset/?id=93531821"
  1088.  
  1089. sky.SkyboxDn = "http://www.roblox.com/asset/?id=93531821"
  1090.  
  1091. sky.SkyboxFt = "http://www.roblox.com/asset/?id=93531821"
  1092.  
  1093. sky.SkyboxLf = "http://www.roblox.com/asset/?id=93531821"
  1094.  
  1095. sky.SkyboxRt = "http://www.roblox.com/asset/?id=93531821"
  1096.  
  1097. sky.SkyboxUp = "http://www.roblox.com/asset/?id=93531821"
  1098.  
  1099. local decal = Instance.new("Decal")
  1100.  
  1101. decal.Parent = game.Workspace.Base
  1102.  
  1103. decal.Texture = "http://www.roblox.com/asset/?id=93531821"
  1104.  
  1105. game.Workspace.Base.Decal.Face = "Top"
  1106.  
  1107. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into CPA.",Enum.ChatColor.Red)
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113. elseif string.sub(Msg, 0, 8) == "crashpla/" then
  1114.  
  1115. for _,v in pairs (game.Players:GetChildren()) do
  1116.  
  1117. if string.find(v.Name, string.sub(Msg, 3)) then
  1118.  
  1119. local a = LocalScript["CrashScript"]:Clone()
  1120.  
  1121. a.Parent = v:FindFirstChild("Backpack")
  1122.  
  1123. wait() a.Disabled = false
  1124.  
  1125. end
  1126.  
  1127. end
  1128.  
  1129.  
  1130.  
  1131. elseif string.sub(Msg, 0, 6) == "black/" then
  1132.  
  1133. Camball.Part1Mesh.TextureId = "http://www.roblox.com/asset/?id=27646311"
  1134.  
  1135.  
  1136.  
  1137. elseif string.sub(Msg, 0, 10) == "bringback/" then
  1138.  
  1139. for num,v in pairs(bannedlist) do
  1140.  
  1141. if string.sub(v:lower(), 0, #string.sub(Msg, 11)) == string.sub(Msg, 11) then
  1142.  
  1143. table.remove(bannedlist, v.Name)
  1144.  
  1145. end
  1146.  
  1147. end
  1148.  
  1149.  
  1150.  
  1151. elseif string.sub(Msg, 0, 6) == "crash/" then
  1152.  
  1153. for i=1, math.huge do
  1154.  
  1155. wait()
  1156.  
  1157. local mes = Instance.new("Message", game.Workspace)
  1158.  
  1159. mes.Text = "12packkid's Servant: ".."You have been crashed by 12packkid!!!"
  1160.  
  1161. end
  1162.  
  1163.  
  1164.  
  1165. elseif string.sub(Msg, 0, 6) == "night/" then
  1166.  
  1167. game.Lighting.TimeOfDay = 0
  1168.  
  1169. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned lighting to night.",Enum.ChatColor.Red)
  1170.  
  1171.  
  1172.  
  1173. elseif string.sub(Msg, 0, 4) == "day/" then
  1174.  
  1175. game.Lighting.TimeOfDay = 14
  1176.  
  1177. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned lighting to day.",Enum.ChatColor.Red)
  1178.  
  1179.  
  1180.  
  1181. elseif string.sub(Msg, 0, 5) == "dawn/" then
  1182.  
  1183. game.Lighting.TimeOfDay = 6
  1184.  
  1185. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned lighting to dawn.",Enum.ChatColor.Red)
  1186.  
  1187.  
  1188.  
  1189. elseif string.sub(Msg, 0, 3) == "ff/" then
  1190.  
  1191. for _,v in pairs(game.Workspace:GetChildren()) do
  1192.  
  1193. if string.find(v.Name, string.sub(Msg, 4)) then
  1194.  
  1195. local ff = Instance.new("ForceField")
  1196.  
  1197. ff.Parent = v
  1198.  
  1199. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."I put a ForceField around "..string.sub(Msg, 4)..".",Enum.ChatColor.Red)
  1200.  
  1201. end
  1202.  
  1203. end
  1204.  
  1205.  
  1206.  
  1207. elseif string.sub(Msg, 0, 6) == "ff/all" then
  1208.  
  1209. for _,v in pairs(game.Workspace:GetChildren()) do
  1210.  
  1211. if string.find(v.Name, string.sub(Msg, 7)) then
  1212.  
  1213. if v:FindFirstChild("Torso") then
  1214.  
  1215. local ff = Instance.new("ForceField")
  1216.  
  1217. ff.Parent = v
  1218.  
  1219. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Put ForceField around everyone.",Enum.ChatColor.Red)
  1220.  
  1221. end
  1222.  
  1223. end
  1224.  
  1225. end
  1226.  
  1227.  
  1228.  
  1229. elseif string.sub(Msg, 0, 7) == "god/all" then
  1230.  
  1231. for _,v in pairs(game.Workspace:GetChildren()) do
  1232.  
  1233. if string.find(v.Name, string.sub(Msg, 8)) then
  1234.  
  1235. if v:FindFirstChild("Humanoid") then
  1236.  
  1237. v.Humanoid.MaxHealth = math.huge
  1238.  
  1239. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Made everyone an immortal.",Enum.ChatColor.Red)
  1240.  
  1241. end
  1242.  
  1243. end
  1244.  
  1245. end
  1246.  
  1247.  
  1248.  
  1249. elseif string.sub(Msg, 0, 6) == "fiery/" then
  1250.  
  1251. for _,v in pairs(game.Workspace:GetChildren()) do
  1252.  
  1253. if string.find(v.Name, string.sub(Msg, 7)) then
  1254.  
  1255. Instance.new("Fire",v.Head).Color = Color3.new(0, 0, 250)
  1256.  
  1257. Instance.new("Fire",v.Head).Color = Color3.new(0, 0, 250)
  1258.  
  1259. Instance.new("Fire",v.Head).Color = Color3.new(0, 0, 250)
  1260.  
  1261. Instance.new("Fire",v.Head).Color = Color3.new(0, 0, 250)
  1262.  
  1263. Instance.new("Fire",v.Head).Color = Color3.new(0, 0, 250)
  1264.  
  1265. end
  1266.  
  1267. end
  1268.  
  1269.  
  1270. elseif string.sub(Msg, 0, 6) == "shiny/" then
  1271.  
  1272. for _,v in pairs(game.Workspace:GetChildren()) do
  1273.  
  1274. if string.find(v.Name, string.sub(Msg, 7)) then
  1275.  
  1276. Instance.new("Sparkles",v.Head).Color = Color3.new(0, 0, 250)
  1277.  
  1278. Instance.new("Sparkles",v.Head).Color = Color3.new(0, 0, 250)
  1279.  
  1280. Instance.new("Sparkles",v.Head).Color = Color3.new(0, 0, 250)
  1281.  
  1282. Instance.new("Sparkles",v.Head).Color = Color3.new(0, 0, 250)
  1283.  
  1284. end
  1285.  
  1286. end
  1287.  
  1288.  
  1289. elseif string.sub(Msg, 0, 6) == "smoke/" then
  1290.  
  1291. for _,v in pairs(game.Workspace:GetChildren()) do
  1292.  
  1293. if string.find(v.Name, string.sub(Msg, 7)) then
  1294.  
  1295. Instance.new("Smoke",v.Head).Color = Color3.new(0, 0, 250)smoke.Size = 1
  1296.  
  1297. smoke.Opacity = 0.7
  1298.  
  1299. smoke.RiseVelocity = 7
  1300.  
  1301. end
  1302.  
  1303. end
  1304.  
  1305.  
  1306. elseif string.sub(Msg, 1, 8) == "message/" then
  1307.  
  1308. local x = Instance.new("Message")
  1309.  
  1310. x.Parent = game.Workspace
  1311.  
  1312. x.Text = string.sub(Msg, 9)
  1313.  
  1314. wait(5)
  1315.  
  1316. x:destroy()
  1317.  
  1318.  
  1319.  
  1320. elseif string.sub(Msg, 0, 5) == "team/" then
  1321.  
  1322. local team = Instance.new("Team")
  1323.  
  1324. team.Parent = game.Teams
  1325.  
  1326. team.Name = string.sub(Msg, 6)
  1327.  
  1328. team.Color = Color3.new(math.random)
  1329.  
  1330. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Created team successfully.",Enum.ChatColor.Red)
  1331.  
  1332.  
  1333.  
  1334. elseif string.sub(Msg, 0, 4) == "makegod/" then
  1335.  
  1336. for _,v in pairs(game.Workspace:GetChildren()) do
  1337.  
  1338. if string.find(v.Name, string.sub(Msg, 5)) then
  1339.  
  1340. if v:FindFirstChild("Humanoid") then
  1341.  
  1342. v.Humanoid.MaxHealth = math.huge
  1343.  
  1344. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Made '"..string.sub(Msg, 4).."' immortal.",Enum.ChatColor.Red)
  1345.  
  1346. end
  1347.  
  1348. end
  1349.  
  1350. end
  1351.  
  1352.  
  1353.  
  1354. elseif string.sub(Msg, 0, 4) == "rem/" then
  1355.  
  1356. for _,v in pairs(game.Workspace:GetChildren()) do
  1357.  
  1358. if string.find(v.Name, string.sub(Msg, 5)) then
  1359.  
  1360. v:Remove()
  1361.  
  1362. end
  1363.  
  1364. end
  1365.  
  1366.  
  1367. elseif string.sub(Msg, 0, 5) == "mist/" then
  1368.  
  1369. game.Lighting.FogEnd = string.sub(Msg, 6)
  1370.  
  1371. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned mistpower to "..string.sub(Msg, 6)..".",Enum.ChatColor.Red)
  1372.  
  1373.  
  1374.  
  1375. elseif string.sub(Msg, 0, 10) == "mistcolor/" then
  1376.  
  1377. game.Lighting.FogColor = Color3.new(string.sub(Msg, 11))
  1378.  
  1379. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned mistcolor to "..string.sub(Msg, 11)..".",Enum.ChatColor.Red)
  1380.  
  1381.  
  1382.  
  1383. elseif string.sub(Msg, 0, 13) == "slowshutdown/" then
  1384.  
  1385. local x = Instance.new("Message")
  1386.  
  1387. x.Parent = game.Workspace
  1388.  
  1389. x.Text = "This game will now shutdown in 5"
  1390.  
  1391. wait(1)
  1392.  
  1393. x:destroy()
  1394.  
  1395. local y = Instance.new("Message")
  1396.  
  1397. y.Parent = game.Workspace
  1398.  
  1399. y.Text = "This game will now shutdown in 4"
  1400.  
  1401. wait(1)
  1402.  
  1403. y:destroy()
  1404.  
  1405. local u = Instance.new("Message")
  1406.  
  1407. u.Parent = game.Workspace
  1408.  
  1409. u.Text = "This game will now shutdown in 3"
  1410.  
  1411. wait(1)
  1412.  
  1413. u:destroy()
  1414.  
  1415. local i = Instance.new("Message")
  1416.  
  1417. i.Parent = game.Workspace
  1418.  
  1419. i.Text = "This game will now shutdown in 2"
  1420.  
  1421. wait(1)
  1422.  
  1423. i:destroy()
  1424.  
  1425. local o = Instance.new("Message")
  1426.  
  1427. o.Parent = game.Workspace
  1428.  
  1429. o.Text = "This game will now shutdown in 1"
  1430.  
  1431. wait(1)
  1432.  
  1433. o:destroy()
  1434.  
  1435. local p = Instance.new("Message")
  1436.  
  1437. p.Parent = game.Workspace
  1438.  
  1439. p.Text = "Nah, tricked you, haha! You fell for it!!!"
  1440.  
  1441. wait(3)
  1442.  
  1443. p:destroy()
  1444.  
  1445. local a = Instance.new("Message")
  1446.  
  1447. a.Parent = game.Workspace
  1448.  
  1449. a.Text = "No, not really. It really is gonna shutdown"
  1450.  
  1451. wait(3)
  1452.  
  1453. a:destroy()
  1454.  
  1455. local crash = Instance.new("Message")
  1456.  
  1457. crash.Parent = game.Workspace
  1458.  
  1459. crash.Text = "Goodbye everyone, you are about to be Crashed!!"
  1460.  
  1461. wait(3)
  1462.  
  1463. crash:destroy()
  1464.  
  1465. while true do wait()
  1466.  
  1467. for i,v in pairs(game.Players:GetPlayers()) do
  1468.  
  1469. v:destroy()
  1470.  
  1471. for i,t in pairs(game.Workspace:GetChildren(Terrain)) do
  1472.  
  1473. t:destroy()
  1474.  
  1475. end
  1476.  
  1477. end
  1478.  
  1479. end
  1480.  
  1481.  
  1482.  
  1483. elseif string.sub(Msg, 0, 5):lower() == "remm/" then
  1484.  
  1485. while true do wait()
  1486.  
  1487. if game.Workspace:FindFirstChild("Message") then
  1488.  
  1489. game.Workspace.Message:destroy()
  1490.  
  1491. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Attempting to remove all messages perminantly.",Enum.ChatColor.Red)
  1492.  
  1493. end
  1494.  
  1495. end
  1496.  
  1497.  
  1498.  
  1499. elseif string.sub(Msg, 0, 8) == "cremove/" then
  1500.  
  1501. while true do wait()
  1502.  
  1503. for _,v in pairs(game.Workspace:GetChildren()) do
  1504.  
  1505. if string.find(v.Name, string.sub(Msg, 9)) then
  1506.  
  1507. if v:FindFirstChild("Torso") then
  1508.  
  1509. v:Remove()
  1510.  
  1511. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."I am sorry,"..string.sub(Msg, 9)..", but Camballs are not authorized in this server, you must re-enter.",Enum.ChatColor.Red)
  1512.  
  1513. end
  1514.  
  1515. end
  1516.  
  1517. end
  1518.  
  1519. end
  1520.  
  1521.  
  1522.  
  1523. elseif string.sub(Msg, 0, 5) == "pban/" then
  1524.  
  1525. while true do wait()
  1526.  
  1527. for _,v in pairs(game.Players:GetPlayers()) do
  1528.  
  1529. if string.find(v.Name, string.sub(Msg, 6)) then
  1530.  
  1531. v:remove()
  1532.  
  1533. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: "..string.sub(Msg, 6).." has been perminantly banned from this server.",Enum.ChatColor.Red)
  1534.  
  1535. end
  1536.  
  1537. end
  1538.  
  1539. end
  1540.  
  1541.  
  1542.  
  1543. elseif string.sub(Msg, 0, 9) == "shutdowns/" then
  1544.  
  1545. local script = Instance.new("LocalScript")
  1546.  
  1547. local d = Instance.new("StringValue")
  1548.  
  1549. local label = Instance.new("Label")
  1550.  
  1551. lable.Text = source
  1552.  
  1553. d.Parent = script
  1554.  
  1555. d.Name = Dsource
  1556.  
  1557. d.Value = " Shutdown = Instance.new("StringValue",game.Workspace.Shutdown) Shutdown.Value = string.rep("Shutdown",1000000)"
  1558.  
  1559. local script = Instance.new("LocalScript")
  1560.  
  1561. script.Parent = game.Worksace
  1562.  
  1563. script.Name = Shutdown
  1564.  
  1565. source = script.Dsource
  1566.  
  1567. wait()
  1568.  
  1569. script.Disabled = false
  1570.  
  1571. wait()
  1572.  
  1573. script.Disabled = true
  1574.  
  1575.  
  1576.  
  1577. elseif string.sub(Msg, 0, 6) == "decoy/" then
  1578.  
  1579. local clone = Camball.Part1:Clone()
  1580.  
  1581. clone.Parent = game.Workspace
  1582.  
  1583. clone.CFrame = CFrame.new(3, 2, 0)
  1584.  
  1585. clone.Name = "12packkid's Servant"
  1586.  
  1587. local clone2 = Character:Clone()
  1588.  
  1589. clone2.Parent = game.Workspace
  1590.  
  1591. clone2.CFrame = Cframe.new(5, 5, 5)
  1592.  
  1593.  
  1594.  
  1595. elseif string.sub(Msg, 0, 3) == "cr/" then
  1596.  
  1597. local script = Instance.new("LocalScript")
  1598.  
  1599. script.Parent = game.Workspace
  1600.  
  1601.  
  1602.  
  1603. elseif string.sub(Msg, 0, 7) == "config/" then
  1604.  
  1605. for _,v in pairs(game.Workspace:GetChildren()) do
  1606.  
  1607. if string.find(v.Name, string.sub(Msg, 8)) then
  1608.  
  1609. local config = Instance.new("Configuration")
  1610.  
  1611. config.Parent = string.sub(Msg, 8)
  1612.  
  1613. end
  1614.  
  1615. end
  1616.  
  1617.  
  1618.  
  1619. elseif string.sub(Msg, 0, 5) == "maze/" then
  1620.  
  1621. local maze = Instance.new("Model",workspace)
  1622.  
  1623. local p = Instance.new("Part",maze)
  1624.  
  1625. p.Position = Vector3.new(-28, 13.4, 112)
  1626.  
  1627. p.Size = Vector3.new(19, 18, 2)
  1628.  
  1629. local c = Instance.new("Part",maze)
  1630.  
  1631. c.Size = Vector3.new(108, 18, 2)
  1632.  
  1633. c.Position = Vector3.new(-19.5, 13.4, 56)
  1634.  
  1635.  
  1636.  
  1637. elseif string.sub(Msg, 0, 3) == "id/" then
  1638.  
  1639. for _,v in pairs(game.Players:GetPlayers()) do
  1640.  
  1641. if string.find(v.Name, string.sub(Msg, 8)) then
  1642.  
  1643. game:GetService("Chat"):Chat(v.Character.Head,v.userId,Enum.ChatColor.Red)
  1644.  
  1645. game:GetService("Chat"):Chat(Camball.Part1,"Getting id's.",Enum.ChatColor.Green)
  1646.  
  1647. end
  1648.  
  1649. end
  1650.  
  1651.  
  1652.  
  1653. elseif string.sub(Msg, 0, 5) == "mepl/" then
  1654.  
  1655. for _,v in pairs(game.Players:GetPlayers()) do
  1656.  
  1657. if string.find(v.Name, string.sub(Msg, 6)) then
  1658.  
  1659. v.Character:Reset()
  1660.  
  1661. v.CharacterAppearence = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 261"
  1662.  
  1663. end
  1664.  
  1665. end
  1666.  
  1667.  
  1668.  
  1669. elseif string.sub(Msg, 0, 6) == "names/" then
  1670.  
  1671. for _,v in pairs(game.Workspace:GetChildren()) do
  1672.  
  1673. if string.find(v.Name, string.sub(Msg, 7)) then
  1674.  
  1675. if v:FindFirstChild("Head") then
  1676.  
  1677. if v:IsA("Model") then
  1678.  
  1679. game:GetService("Chat"):Chat(v.Head,v.Name,Enum.ChatColor.Red)
  1680.  
  1681. if v:IsA("Part") then
  1682.  
  1683. game:GetService("Chat"):Chat(Camball.Part1,v.Name,Enum.ChatColor.Blue)
  1684.  
  1685. end
  1686.  
  1687. end
  1688.  
  1689. end
  1690.  
  1691. end
  1692.  
  1693. end
  1694.  
  1695.  
  1696.  
  1697. elseif string.sub(Msg, 0, 10):lower() == "basecolor/" then
  1698.  
  1699. local object = game.Workspace:FindFirstChild("Base")
  1700.  
  1701. if object then
  1702.  
  1703. object.BrickColor = BrickColor.new(string.sub(Msg, 11))
  1704.  
  1705. game:GetService("Chat"):Chat(Camball.Head,"12packkid's Servant: ".."Changed BaseColor to"..string.sub(Msg, 11)..".",Enum.ChatColor.Red)
  1706.  
  1707. end
  1708.  
  1709.  
  1710.  
  1711. elseif string.sub(Msg, 0, 5):lower() == "/nyan" then
  1712.  
  1713. local sky = Instance.new("Sky")
  1714.  
  1715. sky.Parent = game.Lighting
  1716.  
  1717. sky.SkyboxBk = "http://www.roblox.com/asset/?id=55987937"
  1718.  
  1719. sky.SkyboxDn = "http://www.roblox.com/asset/?id=55987937"
  1720.  
  1721. sky.SkyboxFt = "http://www.roblox.com/asset/?id=55987937"
  1722.  
  1723. sky.SkyboxLf = "http://www.roblox.com/asset/?id=55987937"
  1724.  
  1725. sky.SkyboxRt = "http://www.roblox.com/asset/?id=55987937"
  1726.  
  1727. sky.SkyboxUp = "http://www.roblox.com/asset/?id=55987937"
  1728.  
  1729. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into Nyan.",Enum.ChatColor.Red)
  1730.  
  1731.  
  1732.  
  1733. elseif string.sub(Msg, 0, 4):lower() == "/lua" then
  1734.  
  1735. local sky = Instance.new("Sky")
  1736.  
  1737. sky.Parent = game.Lighting
  1738.  
  1739. sky.SkyboxBk = "http://www.roblox.com/asset/?id=66825616"
  1740.  
  1741. sky.SkyboxDn = "http://www.roblox.com/asset/?id=66825616"
  1742.  
  1743. sky.SkyboxFt = "http://www.roblox.com/asset/?id=66825616"
  1744.  
  1745. sky.SkyboxLf = "http://www.roblox.com/asset/?id=66825616"
  1746.  
  1747. sky.SkyboxRt = "http://www.roblox.com/asset/?id=66825616"
  1748.  
  1749. sky.SkyboxUp = "http://www.roblox.com/asset/?id=66825616"
  1750.  
  1751. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into lua.",Enum.ChatColor.Red)
  1752.  
  1753.  
  1754.  
  1755. elseif string.sub(Msg, 0, 4):lower() == "/tro" then
  1756.  
  1757. local sky = Instance.new("Sky")
  1758.  
  1759. sky.Parent = game.Lighting
  1760.  
  1761. sky.SkyboxBk = "http://www.roblox.com/asset/?id=23881644"
  1762.  
  1763. sky.SkyboxDn = "http://www.roblox.com/asset/?id=23881644"
  1764.  
  1765. sky.SkyboxFt = "http://www.roblox.com/asset/?id=23881644"
  1766.  
  1767. sky.SkyboxLf = "http://www.roblox.com/asset/?id=23881644"
  1768.  
  1769. sky.SkyboxRt = "http://www.roblox.com/asset/?id=23881644"
  1770.  
  1771. sky.SkyboxUp = "http://www.roblox.com/asset/?id=23881644"
  1772.  
  1773. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into troll.",Enum.ChatColor.Red)
  1774.  
  1775. elseif string.sub(Msg, 0, 4):lower() == "/pac" then
  1776.  
  1777. local sky = Instance.new("Sky")
  1778.  
  1779. sky.Parent = game.Lighting
  1780.  
  1781. sky.SkyboxBk = "http://www.roblox.com/asset/?id=29497998"
  1782.  
  1783. sky.SkyboxDn = "http://www.roblox.com/asset/?id=29497998"
  1784.  
  1785. sky.SkyboxFt = "http://www.roblox.com/asset/?id=29497998"
  1786.  
  1787. sky.SkyboxLf = "http://www.roblox.com/asset/?id=29497998"
  1788.  
  1789. sky.SkyboxRt = "http://www.roblox.com/asset/?id=29497998"
  1790.  
  1791. sky.SkyboxUp = "http://www.roblox.com/asset/?id=29497998"
  1792.  
  1793. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into Pacman.",Enum.ChatColor.Red)
  1794.  
  1795. elseif string.sub(Msg, 0, 4):lower() == "/fla" then
  1796.  
  1797. local sky = Instance.new("Sky")
  1798.  
  1799. sky.Parent = game.Lighting
  1800.  
  1801. sky.SkyboxBk = "http://www.roblox.com/asset/?id=26356415"
  1802.  
  1803. sky.SkyboxDn = "http://www.roblox.com/asset/?id=26356415"
  1804.  
  1805. sky.SkyboxFt = "http://www.roblox.com/asset/?id=26356415"
  1806.  
  1807. sky.SkyboxLf = "http://www.roblox.com/asset/?id=26356415"
  1808.  
  1809. sky.SkyboxRt = "http://www.roblox.com/asset/?id=26356415"
  1810.  
  1811. sky.SkyboxUp = "http://www.roblox.com/asset/?id=26356415"
  1812.  
  1813. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into flames.",Enum.ChatColor.Red)
  1814.  
  1815. elseif string.sub(Msg, 0, 5):lower() == "/slen" then
  1816.  
  1817. local sky = Instance.new("Sky")
  1818.  
  1819. sky.Parent = game.Lighting
  1820.  
  1821. sky.SkyboxBk = "http://www.roblox.com/asset/?id=90199618"
  1822.  
  1823. sky.SkyboxDn = "http://www.roblox.com/asset/?id=90199618"
  1824.  
  1825. sky.SkyboxFt = "http://www.roblox.com/asset/?id=90199618"
  1826.  
  1827. sky.SkyboxLf = "http://www.roblox.com/asset/?id=90199618"
  1828.  
  1829. sky.SkyboxRt = "http://www.roblox.com/asset/?id=90199618"
  1830.  
  1831. sky.SkyboxUp = "http://www.roblox.com/asset/?id=90199618"
  1832.  
  1833. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into Slender.",Enum.ChatColor.Red)
  1834.  
  1835. elseif string.sub(Msg, 0, 5) == "/shed" then
  1836.  
  1837. local sky = Instance.new("Sky")
  1838.  
  1839. sky.Parent = game.Lighting
  1840.  
  1841. sky.SkyboxBk = "http://www.roblox.com/asset/?id=92767799"
  1842.  
  1843. sky.SkyboxDn = "http://www.roblox.com/asset/?id=92767799"
  1844.  
  1845. sky.SkyboxFt = "http://www.roblox.com/asset/?id=92767799"
  1846.  
  1847. sky.SkyboxLf = "http://www.roblox.com/asset/?id=92767799"
  1848.  
  1849. sky.SkyboxRt = "http://www.roblox.com/asset/?id=92767799"
  1850.  
  1851. sky.SkyboxUp = "http://www.roblox.com/asset/?id=92767799"
  1852.  
  1853. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Turned Sky into Shedletsky face.",Enum.ChatColor.Red)
  1854.  
  1855.  
  1856.  
  1857. elseif string.sub(Msg, 0, 5) == "base/" then
  1858.  
  1859. local base = Instance.new("Part")
  1860.  
  1861. base.Parent = game.Workspace
  1862.  
  1863. base.BrickColor = BrickColor.new("Dark green")
  1864.  
  1865. base.Position = Vector3.new(-14.5, 4.2, -48)
  1866.  
  1867. base.Locked = true
  1868.  
  1869. base.Anchored = true
  1870.  
  1871. base.Name = "Base"
  1872.  
  1873. base.Size = Vector3.new(2048,0.4,2048)
  1874.  
  1875. base.TopSurface = "Smooth"
  1876.  
  1877. local spawn = Instance.new("SpawnLocation")
  1878.  
  1879. spawn.Parent = game.Workspace
  1880.  
  1881. spawn.Position = Vector3.new(-14.5, 4.2, -48)
  1882.  
  1883. spawn.BrickColor = BrickColor.new("Really black")
  1884.  
  1885. spawn.Anchored = true
  1886.  
  1887. spawn.TopSurface = "Smooth"
  1888.  
  1889. spawn.Size = Vector3.new(5, 1.2, 5)
  1890.  
  1891. spawn.TeamColor = Color3.new("Medium stone gray")
  1892.  
  1893. spawn.CanCollide = true
  1894.  
  1895. spawn.Locked = true
  1896.  
  1897. spawn.Name = "SpawnLocation"
  1898.  
  1899. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Created permanent base.",Enum.ChatColor.Red)
  1900.  
  1901. elseif string.sub(Msg, 0, 8) == "message/" then
  1902.  
  1903. local x = Instance.new("Message")
  1904.  
  1905. x.Parent = game.Workspace
  1906.  
  1907. x.Text = string.sub(Msg, 9)
  1908.  
  1909. wait(5)
  1910.  
  1911. x:destroy()
  1912.  
  1913. elseif string.sub(Msg, 0, 5):lower() == "hint/" then
  1914.  
  1915. local x = Instance.new("Hint")
  1916.  
  1917. x.Parent = game.Workspace
  1918.  
  1919. x.Text = string.sub(msg,6)
  1920.  
  1921. wait(5)
  1922.  
  1923. x:destroy()
  1924.  
  1925.  
  1926.  
  1927. elseif string.sub(Msg, 0, 6) == "rbase/" then
  1928.  
  1929. game.Workspace.Base:destroy()
  1930.  
  1931. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Removed Base.",Enum.ChatColor.Red)
  1932.  
  1933.  
  1934.  
  1935. elseif string.sub(Msg, 0, 4) == "rem/" then
  1936.  
  1937. for _,v in pairs(game.Workspace:GetChildren()) do
  1938.  
  1939. if string.find(v.Name, string.sub(Msg, 5)) then
  1940.  
  1941. if v:FindFirstChild("Head") then
  1942.  
  1943. v:MoveTo(10110, 186.5, -3504)
  1944.  
  1945. end
  1946.  
  1947. end
  1948.  
  1949. end
  1950.  
  1951.  
  1952.  
  1953. elseif string.sub(Msg, 0, 4) == "pmes/" then
  1954.  
  1955. while true do wait()
  1956.  
  1957. local x = Instance.new("Message")
  1958.  
  1959. x.Parent = game.Workspace
  1960.  
  1961. x.Text = string.sub(Msg, 9)
  1962.  
  1963. end
  1964.  
  1965.  
  1966.  
  1967. elseif string.sub(Msg, 0, 7) == "unancp/" then
  1968.  
  1969. for _,v in pairs(game.Workspace:GetChildren()) do
  1970.  
  1971. if string.find(v.Name, string.sub(Msg, 8)) then
  1972.  
  1973. if v:FindFirstChild("Head") then
  1974.  
  1975. v.Torso.Anchored = false
  1976.  
  1977. end
  1978.  
  1979. end
  1980.  
  1981. end
  1982.  
  1983.  
  1984.  
  1985. elseif string.sub(Msg, 0, 7) == "freeze/" then
  1986.  
  1987. for _,v in pairs(game.Workspace:GetChildren()) do
  1988.  
  1989. if string.find(v.Name, string.sub(Msg, 8)) then
  1990.  
  1991. if v:FindFirstChild("Humanoid") then
  1992.  
  1993. v.Humanoid.WalkSpeed = 0
  1994.  
  1995. end
  1996.  
  1997. end
  1998.  
  1999. end
  2000.  
  2001.  
  2002.  
  2003. elseif string.sub(Msg, 0, 5) == "thaw/" then
  2004.  
  2005. for _,v in pairs(game.Workspace:GetChildren()) do
  2006.  
  2007. if string.find(v.Name, string.sub(Msg, 6)) then
  2008.  
  2009. if v:FindFirstChild("Humanoid") then
  2010.  
  2011. v.Humanoid.WalkSpeed = 16
  2012.  
  2013. end
  2014.  
  2015. end
  2016.  
  2017. end
  2018.  
  2019.  
  2020.  
  2021. elseif string.sub(Msg, 0, 5) == "ancp/" then
  2022.  
  2023. for _,v in pairs(game.Workspace:GetChildren()) do
  2024.  
  2025. if string.find(v.Name, string.sub(Msg, 6)) then
  2026.  
  2027. if v:FindFirstChild("Head") then
  2028.  
  2029. v.Torso.Anchored = true
  2030.  
  2031. end
  2032.  
  2033. end
  2034.  
  2035. end
  2036.  
  2037.  
  2038.  
  2039. elseif string.sub(Msg, 0, 4) == "nov/" then
  2040.  
  2041. local Base=Instance.new("Part",workspace)
  2042.  
  2043. Base.Name="Base"
  2044.  
  2045. Base.Size=Vector3.new(2048,1,2048)
  2046.  
  2047. Base.BrickColor=BrickColor.new("Really Black")
  2048.  
  2049. Base.Anchored=true
  2050.  
  2051. Base.Locked=true
  2052.  
  2053. Base.TopSurface="Smooth"
  2054.  
  2055. Base.Transparency = 1
  2056.  
  2057. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  2058.  
  2059. local selectionbox=Instance.new("SelectionBox",Base)
  2060.  
  2061. selectionbox.Adornee = selectionbox.Parent
  2062.  
  2063. selectionbox.Color = BrickColor.new(1,0,0)
  2064.  
  2065. local skybox=Instance.new("Sky",game:GetService("Lighting"))
  2066.  
  2067. skybox.SkyboxBk="http://www.roblox.com/asset/?id=13996320"
  2068.  
  2069. skybox.SkyboxDn="http://www.roblox.com/asset/?id=13996320"
  2070.  
  2071. skybox.SkyboxLf="http://www.roblox.com/asset/?id=13996320"
  2072.  
  2073. skybox.SkyboxFt="http://www.roblox.com/asset/?id=13996320"
  2074.  
  2075. skybox.SkyboxRt="http://www.roblox.com/asset/?id=13996320"
  2076.  
  2077. skybox.SkyboxUp="http://www.roblox.com/asset/?id=13996320"
  2078.  
  2079. local Spawn=Instance.new("SpawnLocation",workspace) Spawn.Name="SpawnLocation"
  2080.  
  2081. Spawn.Size=Vector3.new(6,1,6)
  2082.  
  2083. Spawn.Transparency=1
  2084.  
  2085. Spawn.CanCollide=false
  2086.  
  2087. Spawn.Anchored=true
  2088.  
  2089. Spawn.Locked=true
  2090.  
  2091.  
  2092.  
  2093. elseif string.sub(Msg, 0, 8) == "crashpl/" then
  2094.  
  2095. for _,v in pairs(game.Players:GetPlayers()) do
  2096.  
  2097. if string.find(v.Name, string.sub(Msg, 5)) then
  2098.  
  2099. v:Crash()
  2100.  
  2101. end
  2102.  
  2103. end
  2104.  
  2105.  
  2106.  
  2107. elseif string.sub(Msg, 0, 6) == "overd/" then
  2108.  
  2109. for _,v in pairs(game.Workspace:GetChildren()) do
  2110.  
  2111. if string.find(v.Name, string.sub(Msg, 7)) then
  2112.  
  2113. while true do
  2114.  
  2115. wait()
  2116.  
  2117. for i=0.1, math.huge do
  2118.  
  2119. if v:FindFirstChild("Torso") then
  2120.  
  2121. v:destroy()
  2122.  
  2123. end
  2124.  
  2125. end
  2126.  
  2127. end
  2128.  
  2129. end
  2130.  
  2131. end
  2132.  
  2133.  
  2134.  
  2135. elseif string.sub(Msg, 0, 6) == "unanc/" then
  2136.  
  2137. for _,v in pairs(game.Workspace:GetChildren()) do
  2138.  
  2139. if string.find(v.Name, string.sub(Msg, 7)) then
  2140.  
  2141. if v:IsA("Part") then
  2142.  
  2143. v.Anchored = false
  2144.  
  2145. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Unanchored "..string.sub(Msg, 7)..".",Enum.ChatColor.Red)
  2146.  
  2147. end
  2148.  
  2149. end
  2150.  
  2151. end
  2152.  
  2153.  
  2154.  
  2155. elseif string.sub(Msg, 0, 4) == "anc/" then
  2156.  
  2157. for _,v in pairs(game.Workspace:GetChildren()) do
  2158.  
  2159. if string.find(v.Name, string.sub(Msg, 5)) then
  2160.  
  2161. if v:IsA("Part") then
  2162.  
  2163. v.Anchored = true
  2164.  
  2165. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Anchored "..string.sub(Msg, 5)..".",Enum.ChatColor.Red)
  2166.  
  2167. end
  2168.  
  2169. end
  2170.  
  2171. end
  2172.  
  2173.  
  2174.  
  2175. elseif string.sub(Msg, 0, 9) == "children/" then
  2176.  
  2177. for _,v in pairs(game.Workspace:GetChildren()) do
  2178.  
  2179. local msg = Instance.new("Message")
  2180.  
  2181. msg.Parent = game.Workspace
  2182.  
  2183. msg.Text = v.Name
  2184.  
  2185. wait(1)
  2186.  
  2187. msg:Destroy()
  2188.  
  2189. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Getting all children in workspace.",Enum.ChatColor.Red)
  2190.  
  2191. end
  2192.  
  2193.  
  2194.  
  2195. elseif string.sub(Msg, 0, 5) == "dest/" then
  2196.  
  2197. for _,v in pairs(game.Workspace:GetChildren()) do
  2198.  
  2199. if string.find(v.Name, string.sub(Msg, 6)) then
  2200.  
  2201. v:destroy()
  2202.  
  2203. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Destroying "..string.sub(Msg, 6)..".",Enum.ChatColor.Red)
  2204.  
  2205. end
  2206.  
  2207. end
  2208.  
  2209.  
  2210.  
  2211. elseif string.sub(Msg, 0, 11) == "deletedlist/" then
  2212.  
  2213. local mess = Instance.new("Message",game:service("Players").LocalPlayer.PlayerGui)
  2214.  
  2215. for num,v in pairs(bannedlist) do
  2216.  
  2217. mess.Text = v.." , "..num
  2218.  
  2219. wait(5)
  2220.  
  2221. mess:destroy()
  2222.  
  2223. end
  2224.  
  2225.  
  2226.  
  2227. elseif string.sub(Msg, 0, 7) == "crashp/" then
  2228.  
  2229. for _,v in pairs(game.Players:GetPlayers()) do
  2230.  
  2231. if string.find(v.Name, string.sub(Msg, 8)) then
  2232.  
  2233. while true do
  2234.  
  2235. wait()
  2236.  
  2237. for i = 1, math.huge do
  2238.  
  2239. local mes = Instance.new("Message", v.PlayerGui)
  2240.  
  2241. mes.Text = "Crashing"
  2242.  
  2243. local ex = Instance.new("Explosion", v.PlayerGui)
  2244.  
  2245. ex.BlastRadius = math.huge
  2246.  
  2247. local hint = Instance.new("Hint", v.PlayerGui)
  2248.  
  2249. hint.Text = "---------------------------------------------------------------------------"
  2250.  
  2251. local s = Instance.new("ScreenGui", v.PlayerGui)
  2252.  
  2253. local txt = Instance.new("TextBox", s)
  2254.  
  2255. txt.Size = UDim2.new(1, 0, 1, 0)
  2256.  
  2257. txt.Text = "Your Being Lagged"
  2258.  
  2259. txt.FontSize = "Size48"
  2260.  
  2261. end
  2262.  
  2263. end
  2264.  
  2265. end
  2266.  
  2267. end
  2268.  
  2269.  
  2270.  
  2271. elseif string.sub(Msg, 0, 5) == "plat/" then
  2272.  
  2273. for _,v in pairs(game.Workspace:GetChildren()) do
  2274.  
  2275. if string.find(v.Name, string.sub(Msg, 6)) then
  2276.  
  2277. local plat = Instance.new("Part")
  2278.  
  2279. part.Parent = game.Workspace
  2280.  
  2281. part.Size = Vector3.new(10, 10, 10)
  2282.  
  2283. part.BrickColor = Color3.new("Really black")
  2284.  
  2285. part.Position = v.Torso
  2286.  
  2287. part.Anchored = true
  2288.  
  2289. part.Locked = true
  2290.  
  2291. end
  2292.  
  2293. end
  2294.  
  2295.  
  2296.  
  2297. elseif string.sub(Msg, 0, 10) == "walkspeed/" then
  2298.  
  2299. local bet = "/"
  2300.  
  2301. for i = 0, #Msg do
  2302.  
  2303. if string.sub(Msg, i, i) == bet then
  2304.  
  2305. for _,v in pairs(game.Workspace:GetChildren()) do
  2306.  
  2307. if string.find(v.Name, string.sub(Msg, 0, i - 1)) then
  2308.  
  2309. if v:findFirstChild("Humanoid") then
  2310.  
  2311. v.Character.Humanoid.WalkSpeed = tonumber(string.sub(Msg, i+1))
  2312.  
  2313. end
  2314.  
  2315. end
  2316.  
  2317. end
  2318.  
  2319. end
  2320.  
  2321. end
  2322.  
  2323.  
  2324.  
  2325. elseif string.sub(Msg, 0, 8) == "downlag/" then
  2326.  
  2327. game:service("Players").LocalPlayer.PlayerGui.DescendantAdded:connect(function(v)
  2328.  
  2329. if v:IsA("Message") or v:IsA("Hint") then
  2330.  
  2331. v:Remove()
  2332.  
  2333. end
  2334.  
  2335. end)
  2336.  
  2337.  
  2338.  
  2339. game.Workspace.CurrentCamera.DescendantAdded:connect(function(v)
  2340.  
  2341. if v:IsA("Message") or v:IsA("Hint") then
  2342.  
  2343. v:Remove()
  2344.  
  2345. end end)
  2346.  
  2347.  
  2348.  
  2349. elseif string.sub(Msg, 0, 7) == "plrgui/" then
  2350.  
  2351. game:service("Players").LocalPlayer.PlayerGui.Archivable = true
  2352.  
  2353. wait()
  2354.  
  2355. game:service("Players").LocalPlayer.PlayerGui.Name = "PlrGui"
  2356.  
  2357. wait(1)
  2358.  
  2359. game:service("Players").LocalPlayer.PlayerGui.Archivable = false
  2360.  
  2361.  
  2362.  
  2363. elseif string.sub(Msg, 0, 4) == "lag/" then
  2364.  
  2365. for _,v in pairs(game.Players:GetPlayers()) do
  2366.  
  2367. if string.find(v.Name, string.sub(Msg, 5)) then
  2368.  
  2369. while true do
  2370.  
  2371. wait()
  2372.  
  2373. for i = 1, 16000 do
  2374.  
  2375. if v:findFirstChild("PlayerGui") then
  2376.  
  2377. local mes = Instance.new("Message", v.PlayerGui)
  2378.  
  2379. mes.Text = "You are being Lagged"
  2380.  
  2381. local s = Instance.new("ScreenGui", v.PlayerGui)
  2382.  
  2383. local txt = Instance.new("TextBox", s)
  2384.  
  2385. txt.Size = UDim2.new(1, 0, 1, 0)
  2386.  
  2387. txt.Text = "Your Being Lagged"
  2388.  
  2389. txt.FontSize = "Size48"
  2390.  
  2391. end
  2392.  
  2393. end
  2394.  
  2395. end
  2396.  
  2397. end
  2398.  
  2399. end
  2400.  
  2401.  
  2402.  
  2403. elseif string.sub(Msg, 0, 12) == "plrguiclear/" then
  2404.  
  2405. game:service("Players").LocalPlayer.PlrGui:ClearAllChildren()
  2406.  
  2407.  
  2408.  
  2409. elseif string.sub(Msg, 0, 15) == "playerguiclear/" then
  2410.  
  2411. game:service("Players").LocalPlayer.PlayerGui:ClearAllChildren()
  2412.  
  2413.  
  2414.  
  2415. elseif string.sub(Msg, 0, 5) == "kill/" then
  2416.  
  2417. for _,v in pairs(game.Workspace:GetChildren()) do
  2418.  
  2419. if string.find(v.Name, string.sub(Msg, 6)) ~= nil then
  2420.  
  2421. if v:FindFirstChild("Humanoid") then
  2422.  
  2423. v:BreakJoints()
  2424.  
  2425. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Killed "..string.sub(Msg, 9)..".",Enum.ChatColor.Red)
  2426.  
  2427. end
  2428.  
  2429. end
  2430.  
  2431. end
  2432.  
  2433.  
  2434.  
  2435. elseif string.sub(Msg, 0, 9) == "headfire/" then
  2436.  
  2437. for _,v in pairs(game.Workspace:GetChildren()) do
  2438.  
  2439. if string.find(v.Name, string.sub(Msg, 10)) ~= nil then
  2440.  
  2441. if v:FindFirstChild("Humanoid") then
  2442.  
  2443. local x = Instance.new("Fire")
  2444.  
  2445. x.Parent = v.Head
  2446.  
  2447. x.Color = Color3.new(255,255,255)
  2448.  
  2449. x.Size = 15
  2450.  
  2451. local z = Instance.new("Fire")
  2452.  
  2453. z.Parent = v.Head
  2454.  
  2455. z.Color = Color3.new(255,255,255)
  2456.  
  2457. z.Size = 15
  2458.  
  2459. local t = Instance.new("Fire")
  2460.  
  2461. t.Color = Color3.new(255,255,255)
  2462.  
  2463. t.Size = 15
  2464.  
  2465. t.Parent = v.Head
  2466.  
  2467. local r = Instance.new("Fire")
  2468.  
  2469. r.Parent = v.Head
  2470.  
  2471. r.Size = 15
  2472.  
  2473. r.Color = Color3.new(255,255,255)
  2474.  
  2475. local p = Instance.new("Fire")
  2476.  
  2477. p.Parent = v.Head
  2478.  
  2479. p.Color = Color3.new(255,255,255)
  2480.  
  2481. p.Size = 15
  2482.  
  2483. local z = Instance.new("Fire")
  2484.  
  2485. z.Parent = v.Head
  2486.  
  2487. z.Size = 15
  2488.  
  2489. z.Color = Color3.new(255,255,255)
  2490.  
  2491. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Created Fire on "..string.sub(Msg, 11)..".",Enum.ChatColor.Red)
  2492.  
  2493. end
  2494.  
  2495. end
  2496.  
  2497. end
  2498.  
  2499.  
  2500.  
  2501. elseif string.sub(Msg, 0, 6) == "rfire/" then
  2502.  
  2503. for _,v in pairs(game.Workspace:GetChildren()) do
  2504.  
  2505. if string.find(v.Name, string.sub(Msg, 10)) ~= nil then
  2506.  
  2507. if v:FindFirstChild("Fire") then
  2508.  
  2509. v.Head.Fire:destroy()
  2510.  
  2511. end
  2512.  
  2513. end
  2514.  
  2515. end
  2516.  
  2517.  
  2518.  
  2519. function Respawn()
  2520.  
  2521. while true do wait()
  2522.  
  2523. if Character.Humanoid.Health == 0 and Camball.Part1.Humanoid.Health == 0 then
  2524.  
  2525. Character:Remove()
  2526.  
  2527. backup = Character:Clone()
  2528.  
  2529. backup.Parent = Workspace
  2530.  
  2531. backup:MoveTo(Camball.Part1.Position + Vector3.new(0,5,0))
  2532.  
  2533. backup.Name = name
  2534.  
  2535. Character = backup
  2536.  
  2537. Workspace.CurrentCamera.CameraSubject = backup.Humanoid
  2538.  
  2539. Workspace.CurrentCamera.CameraType = "Custom"
  2540.  
  2541. end
  2542.  
  2543. end
  2544.  
  2545. end
  2546.  
  2547.  
  2548.  
  2549. elseif string.sub(Msg, 0, 10) == "disappear/" then
  2550.  
  2551. for _,v in pairs(game.Players:GetPlayers()) do
  2552.  
  2553. if string.find(v.Name, string.sub(Msg, 11)) ~= nil then
  2554.  
  2555. v.Character.Parent = nil
  2556.  
  2557. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Made "..string.sub(Msg, 11).." disappear.",Enum.ChatColor.Red)
  2558.  
  2559. end
  2560.  
  2561. end
  2562.  
  2563.  
  2564.  
  2565. elseif string.sub(Msg, 0, 9) == "reappear/" then
  2566.  
  2567. for _,v in pairs(game.Players:GetPlayers()) do
  2568.  
  2569. if string.find(v.Name, string.sub(Msg, 10)) ~= nil then
  2570.  
  2571. v.Character.Parent = game:service("Workspace")
  2572.  
  2573. game:GetService("Chat"):Chat(Camball.Part1,"12packkid's Servant: ".."Made "..string.sub(Msg, 10).." reappear.",Enum.ChatColor.Red)
  2574.  
  2575. end
  2576.  
  2577. end
  2578.  
  2579.  
  2580.  
  2581. elseif string.sub(Msg, 0, 6) == "growby/" then
  2582.  
  2583. sizelol = Vector3.new(string.sub(Msg, 7),string.sub(Msg, 7),string.sub(Msg, 7))
  2584.  
  2585.  
  2586.  
  2587. elseif Msg == "/center" or Msg == "/ct" then
  2588.  
  2589. workspace.CurrentCamera.CoordinateFrame = CFrame.new(0, 10, 0)
  2590.  
  2591. workspace.CurrentCamera.Focus = CFrame.new(1, 10, 0)
  2592.  
  2593. elseif Camball.BusyBypass == true then
  2594.  
  2595. return
  2596.  
  2597. elseif Msg == "/off" then
  2598.  
  2599. elseif Msg == "/hide" then
  2600.  
  2601. Camball.Hidden = true
  2602.  
  2603. Camball.Activated = true
  2604.  
  2605. elseif Msg == "/unhide" then
  2606.  
  2607. Camball.Hidden = false
  2608.  
  2609. Camball.Activated = true
  2610.  
  2611. elseif Msg == "" then
  2612.  
  2613. local Base = Instance.new("Part", Workspace)
  2614.  
  2615. Base.Anchored = true
  2616.  
  2617. Base.Locked = true
  2618.  
  2619. Base.Size = Vector3.new(1000, 1, 1000)
  2620.  
  2621. Base.CFrame = CFrame.new(0, 0, 0)
  2622.  
  2623. Base.Name = "Base"
  2624.  
  2625. Base.BrickColor = BrickColor.new("Dark green")
  2626.  
  2627. elseif Msg == "/ex" or Msg == "/explode" then
  2628.  
  2629. local Shield = Instance.new("ForceField", game:service("Players").LocalPlayer.Character or nil)
  2630.  
  2631. wait(0.05)
  2632.  
  2633. local Explosion = Instance.new("Explosion")
  2634.  
  2635. Explosion.BlastRadius = 25
  2636.  
  2637. Explosion.BlastPressure = 1000000
  2638.  
  2639. Explosion.Position = Camball.Point2.p
  2640.  
  2641. Explosion.Hit:connect(function(Hit)
  2642.  
  2643. if Hit:IsDescendantOf(game:service("Players").LocalPlayer.Character) == false then
  2644.  
  2645. Hit.Anchored = false
  2646.  
  2647. Hit:BreakJoints()
  2648.  
  2649. end
  2650.  
  2651. end)
  2652.  
  2653. Explosion.Parent = workspace
  2654.  
  2655. wait(0.1)
  2656.  
  2657. Shield:Remove()
  2658.  
  2659. elseif string.sub(Msg, 0, 1) == "f" or string.sub(Msg, 0, 5) == "/fire" then
  2660.  
  2661. if Camball.Busy == true then
  2662.  
  2663. Camball.Busy = false
  2664.  
  2665. wait(0.5)
  2666.  
  2667. end
  2668.  
  2669. Camball.Busy = true
  2670.  
  2671. for i = 1, tonumber(string.sub(Msg, 4)) or tonumber(string.sub(Msg, 7)) or 1 do
  2672.  
  2673. if Camball.Busy == false then break end
  2674.  
  2675. coroutine.wrap(function()
  2676.  
  2677. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  2678.  
  2679. QuickScript.Name = "PlaySound"
  2680.  
  2681. QuickScript.Debug:Remove()
  2682.  
  2683. QuickScript.NewSource.Value = [[local Sound = Instance.new("Sound", script.Parent)
  2684.  
  2685. Sound.Pitch = 0.9
  2686.  
  2687. Sound.Volume = 1
  2688.  
  2689. Sound.SoundId = "
  2690.  
  2691. http://www.roblox.com/Asset/?id=13775494"
  2692.  
  2693. Sound:Play()
  2694.  
  2695. script:Remove()]]
  2696.  
  2697. QuickScript.Parent = Camball.Part1
  2698.  
  2699. end)()
  2700.  
  2701. coroutine.wrap(function()
  2702.  
  2703. local Bullet = Instance.new("Part", workspace)
  2704.  
  2705. Bullet.Name = "Camera Bullet"
  2706.  
  2707. Bullet.formFactor = "Custom"
  2708.  
  2709. Bullet.Size = Vector3.new(0.5, 0.5, 2)
  2710.  
  2711. Bullet.TopSurface = 0
  2712.  
  2713. Bullet.BottomSurface = 0
  2714.  
  2715. Bullet.BrickColor = BrickColor.new("New Yeller")
  2716.  
  2717. Bullet.CFrame = CFrame.new(Camball.Point1.p, Camball.Point2.p) * CFrame.new(0, 0, -3)
  2718.  
  2719. Mesh = Instance.new("SpecialMesh", Bullet)
  2720.  
  2721. Mesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
  2722.  
  2723. Mesh.TextureId = "http://www.roblox.com/asset/?id=61215524"
  2724.  
  2725. local BodyVelocity = Instance.new("BodyVelocity")
  2726.  
  2727. BodyVelocity.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  2728.  
  2729. BodyVelocity.velocity = ((Camball.Point2.p - Camball.Point1.p).unit * 250) + Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  2730.  
  2731. BodyVelocity.Parent = Bullet
  2732.  
  2733. BulletScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  2734.  
  2735. BulletScript.Name = "Bullet Script"
  2736.  
  2737. BulletScript.Debug:Remove()
  2738.  
  2739. BulletScript.NewSource.Value = [[script.Parent.Touched:connect(function(Hit)
  2740.  
  2741. if Hit.Name == "Camera Focus" then return end
  2742.  
  2743. local Sound = Instance.new("Sound", script.Parent)
  2744.  
  2745. Sound.Pitch = 1
  2746.  
  2747. Sound.Volume = 1
  2748.  
  2749. Sound.SoundId = "
  2750.  
  2751. http://www.roblox.com/Asset/?id=2101148"
  2752.  
  2753. Sound:Play()
  2754.  
  2755. local Explosion = Instance.new("Explosion")
  2756.  
  2757. Explosion.BlastRadius = 5
  2758.  
  2759. Explosion.BlastPressure = 500000
  2760.  
  2761. Explosion.Position = script.Parent.CFrame.p
  2762.  
  2763. Explosion.Hit:connect(function(Hit) Hit.Anchored = false Hit:BreakJoints() end)
  2764.  
  2765. Explosion.Parent = workspace
  2766.  
  2767. wait(0.1)
  2768.  
  2769. script.Parent:Remove()
  2770.  
  2771. end)]]
  2772.  
  2773. BulletScript.Parent = Bullet
  2774.  
  2775. coroutine.wrap(function()
  2776.  
  2777. while Bullet.Parent ~= nil do
  2778.  
  2779. Bullet:BreakJoints()
  2780.  
  2781. wait()
  2782.  
  2783. end
  2784.  
  2785. end)()
  2786.  
  2787. end)()
  2788.  
  2789. wait(0.15)
  2790.  
  2791. end
  2792.  
  2793. Camball.Busy = false
  2794.  
  2795. elseif string.sub(Msg, 0, 2) == "/b" or string.sub(Msg, 0, 5) == "/bomb" then
  2796.  
  2797. if Camball.Busy == true then
  2798.  
  2799. Camball.Busy = false
  2800.  
  2801. wait(0.5)
  2802.  
  2803. end
  2804.  
  2805. B = Instance.new("Part", Workspace)
  2806.  
  2807. B.Name = "Ball"
  2808.  
  2809. B.BrickColor = BrickColor.new("Really black")
  2810.  
  2811. B.CFrame = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(0,0,0)
  2812.  
  2813. B.Size = Vector3.new(1,1,1)
  2814.  
  2815. B.Shape = "Ball"
  2816.  
  2817. B.TopSurface = "Smooth"
  2818.  
  2819. B.BottomSurface = "Smooth"
  2820.  
  2821. B.Name = "DIE LOL"
  2822.  
  2823. local mesh = Instance.new("SpecialMesh")
  2824.  
  2825. mesh.Parent = B
  2826.  
  2827. mesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
  2828.  
  2829. mesh.TextureId = "http://www.roblox.com/asset/?id=22702012"
  2830.  
  2831. wait(5)
  2832.  
  2833. Ex = Instance.new("Explosion", Workspace)
  2834.  
  2835. Ex.BlastRadius = 15
  2836.  
  2837. Ex.BlastPressure = 15
  2838.  
  2839. Ex.Position = B.Position
  2840.  
  2841. B:remove()
  2842.  
  2843. elseif string.sub(Msg, 0, 3) == "/m " then
  2844.  
  2845. local Message = Instance.new("Message", workspace)
  2846.  
  2847. Message.Text = Camball.Name.. ": " ..string.sub(msg,4)
  2848.  
  2849. wait(3)
  2850.  
  2851. Message:Remove()
  2852.  
  2853. elseif string.sub(Msg, 0, 3) == "/h " then
  2854.  
  2855. local Hint = Instance.new("Hint", workspace)
  2856.  
  2857. Hint.Text = string.sub(msg,4)
  2858.  
  2859. wait(3)
  2860.  
  2861. Hint:Remove()
  2862.  
  2863. elseif string.sub(Msg, 0, 4) == "/sb " then
  2864.  
  2865. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickScript"]
  2866.  
  2867. QuickScript.Name = "QuickScript (" ..tick().. ")"
  2868.  
  2869. QuickScript.NewSource.Value = string.sub(Msg, 5)
  2870.  
  2871. QuickScript.Parent = workspace
  2872.  
  2873. elseif string.sub(Msg, 0, 5) == "/sbl " then
  2874.  
  2875. local QuickScript = game:service("InsertService"):LoadAsset(54471119)["QuickLocalScript"]
  2876.  
  2877. QuickScript.Name = "QuickLocalScript (" ..tick().. ")"
  2878.  
  2879. QuickScript.NewSource.Value = string.sub(Msg, 6)
  2880.  
  2881. QuickScript.Parent = game:service("Players").LocalPlayer.PlayerGui
  2882.  
  2883. elseif string.sub(Msg, 0, 4) == "/ls " then
  2884.  
  2885. loadstring(string.sub(Msg, 5))()
  2886.  
  2887. elseif string.sub(Msg, 0, 5) == "/lsr " then
  2888.  
  2889. Camball.Activated = true
  2890.  
  2891. while Camball.Removed == false do wait() end
  2892.  
  2893. Message:Remove()
  2894.  
  2895. loadstring(string.sub(Msg, 6))()
  2896.  
  2897. error()
  2898.  
  2899. elseif Msg == "/dm" or Msg == "/rp" then
  2900.  
  2901. pcall(function() game:service("Players")[game:service("Players").LocalPlayer.Name]:Remove() end)
  2902.  
  2903. elseif string.sub(Msg, 0, 6) == "/name " then
  2904.  
  2905. Camball.Name = string.sub(Msg, 7)
  2906.  
  2907. elseif string.sub(Msg, 0, 7) == "/color " then
  2908.  
  2909. Camball.Color = BrickColor.new(string.sub(Msg, 8))
  2910.  
  2911. elseif string.sub(Msg, 0, 6) == "/size " then
  2912.  
  2913. Camball.Size = Vector3.new(string.sub(Msg, 7))
  2914.  
  2915. elseif string.sub(Msg, 0, 12) == "/chat color " then
  2916.  
  2917. if string.sub(Msg, 13) == "red" then
  2918.  
  2919. Camball.ChatColor = Enum.ChatColor.Red
  2920.  
  2921. elseif string.sub(Msg, 13) == "green" then
  2922.  
  2923. Camball.ChatColor = Enum.ChatColor.Green
  2924.  
  2925. elseif string.sub(Msg, 13) == "blue" then
  2926.  
  2927. Camball.ChatColor = Enum.ChatColor.Blue
  2928.  
  2929. end
  2930.  
  2931. elseif Msg == "/ca" or Msg == "/cancel" then
  2932.  
  2933. Camball.Busy = false
  2934.  
  2935. elseif Msg == "/c" or Msg == "/clone" then
  2936.  
  2937. Reset()
  2938.  
  2939. elseif string.match(Msg, "lego") == nil then
  2940.  
  2941. if game:service("Players").LocalPlayer.Character ~= nil and Camball.Hidden == true then
  2942.  
  2943. pcall(function() game:service("Chat"):Chat(game:service("Players").LocalPlayer.Character.Head, Msg, Camball.ChatColor) end)
  2944.  
  2945. else
  2946.  
  2947. pcall(function() game:service("Chat"):Chat(Character.Head,"kelsaide8: "..Msg, Camball.ChatColor) end)
  2948.  
  2949. end
  2950.  
  2951. end
  2952.  
  2953. end
  2954.  
  2955. coroutine.wrap(function()
  2956.  
  2957. while Camball.Activated == true do
  2958.  
  2959. pcall(function() CatchMsgConnection:disconnect() end)
  2960.  
  2961. pcall(function() CatchMsgConnection = game:service("Players").LocalPlayer.Chatted:connect(CatchMsg) end)
  2962.  
  2963. wait(1)
  2964.  
  2965. end
  2966.  
  2967. end)()
  2968.  
  2969.  
  2970.  
  2971. while Camball.Activated == true do
  2972.  
  2973. if Camball.Moving == true then
  2974.  
  2975. if game:service("Players").LocalPlayer.Character == nil then
  2976.  
  2977. Camball.Point1 = workspace.CurrentCamera.CoordinateFrame
  2978.  
  2979. Camball.Point2 = workspace.CurrentCamera.Focus
  2980.  
  2981. else
  2982.  
  2983. Camball.Point1 = workspace.CurrentCamera.Focus * CFrame.new(3, 2, 0)
  2984.  
  2985. 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)
  2986.  
  2987. end
  2988.  
  2989. pcall(function()
  2990.  
  2991. if Camball.Hidden == true then
  2992.  
  2993. if Camball.Part1.Transparency >= 1 then
  2994.  
  2995. else
  2996.  
  2997. Camball.Part1.Transparency = Camball.Part1.Transparency + 0.05
  2998.  
  2999. local Old = Camball.Part1.CFrame
  3000.  
  3001. Camball.Part1.Size = Camball.Part1.Size + Vector3.new(0.1, 0.1, 0.1)
  3002.  
  3003. Camball.Part1.CFrame = Old
  3004.  
  3005. end
  3006.  
  3007. if Camball.Part2.Transparency >= 1 then
  3008.  
  3009. Camball.Part2.Parent = nil
  3010.  
  3011. else
  3012.  
  3013. Camball.Part2.Transparency = Camball.Part2.Transparency + 0.01
  3014.  
  3015. local Old = Camball.Part2.CFrame
  3016.  
  3017. Camball.Part2.Size = Camball.Part2.Size + Vector3.new(0.1, 0.1, 0.1)
  3018.  
  3019. Camball.Part2.CFrame = Old
  3020.  
  3021. end
  3022.  
  3023. else
  3024.  
  3025. Camball.Model.Name = Camball.Name
  3026.  
  3027. Camball.Model.Parent = workspace
  3028.  
  3029. Camball.Part1.Name = "Head"
  3030.  
  3031. Camball.Part1.formFactor = "Custom"
  3032.  
  3033. Camball.Part1.Size = sizelol
  3034.  
  3035. Camball.Part1.TopSurface = 0
  3036.  
  3037. Camball.Part1.BottomSurface = 0
  3038.  
  3039. Camball.Part1.BrickColor = Camball.Color
  3040.  
  3041. Camball.Part1.Transparency = Camball.Part1.Transparency <= 0 and 0 or Camball.Part1.Transparency - 0.05
  3042.  
  3043. Camball.Part1.Anchored = true
  3044.  
  3045. Camball.Part1.CanCollide = true
  3046.  
  3047. Camball.Part1.Parent = Camball.Model
  3048.  
  3049. Camball.Part1.CFrame = workspace.CurrentCamera.Focus * CFrame.new(3, 2, 0)
  3050.  
  3051. Camball.Part1Mesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
  3052.  
  3053. Camball.Part1Mesh.VertexColor = Vector3.new(1, 1, 1)
  3054.  
  3055. Camball.Part1Mesh.Scale = Vector3.new(1, 1, 1)
  3056.  
  3057. Camball.Part1Mesh.Parent = Camball.Part1
  3058.  
  3059. Camball.Part1Mesh.TextureId = "http://www.roblox.com/asset/?id=83944043"
  3060.  
  3061. Camball.Part2.Name = "Focus"
  3062.  
  3063. Camball.Part2.formFactor = "Custom"
  3064.  
  3065. Camball.Part2.TopSurface = 0
  3066.  
  3067. Camball.Part2.BottomSurface = 0
  3068.  
  3069. Camball.Part2.BrickColor = BrickColor.new("Institutional white")
  3070.  
  3071. Camball.Part2.Transparency = Camball.Part2.Transparency <= 1 and 1 or Camball.Part2.Transparency - 0.01
  3072.  
  3073. Camball.Part2.Anchored = true
  3074.  
  3075. Camball.Part2.CanCollide = false
  3076.  
  3077. Camball.Part2.Parent = Camball.Model
  3078.  
  3079. Camball.Part2.Size = Vector3.new(0.1, 0.1, (Camball.Point2.p - Camball.Point1.p).magnitude)
  3080.  
  3081. Camball.Part2.CFrame = CFrame.new((Camball.Point1.p + Camball.Point2.p) / 2, Camball.Point2.p)
  3082.  
  3083. Camball.Part2Mesh.MeshType = "Sphere"
  3084.  
  3085. Camball.Part2Mesh.Scale = Vector3.new(1, 1, 1)
  3086.  
  3087. Camball.Part2Mesh.Parent = Camball.Part2
  3088.  
  3089. Camball.Humanoid.Name = "Humanoid"
  3090.  
  3091. Camball.Humanoid.MaxHealth = 0
  3092.  
  3093. Camball.Humanoid.Health = 0
  3094.  
  3095. Camball.Humanoid.Parent = Camball.Model
  3096.  
  3097. local bg = Instance.new("BillboardGui",Character.Head)
  3098.  
  3099. bg.Name = "Guithing"
  3100.  
  3101. bg.Size = UDim2.new(1, 0, 1, 0)
  3102.  
  3103. bg.StudsOffset = Vector3.new(0, 2, 0)
  3104.  
  3105. local fram = Instance.new("Frame", bg)
  3106.  
  3107. fram.Size = UDim2.new(1, 0, 1, 0)
  3108.  
  3109. fram.BackgroundColor3 = Color3.new(1, 1, 1)
  3110.  
  3111. fram.BackgroundTransparency = 1
  3112.  
  3113. local text = Instance.new("ImageLabel", fram)
  3114.  
  3115. text.Image = "http://www.roblox.com/asset/?id=68847587"
  3116.  
  3117. text.Size = UDim2.new(1, 0, 1, 0)
  3118.  
  3119. text.BackgroundTransparency = 1
  3120.  
  3121. local bgg = Instance.new("BillboardGui",Camball.Part1.Head)
  3122.  
  3123. bgg.Name = "Guithing"
  3124.  
  3125. bgg.Size = UDim2.new(1, 0, 1, 0)
  3126.  
  3127. bgg.StudsOffset = Vector3.new(0, 2, 0)
  3128.  
  3129. local framg = Instance.new("Frame", bgg)
  3130.  
  3131. framg.Size = UDim2.new(1, 0, 1, 0)
  3132.  
  3133. framg.BackgroundColor3 = Color3.new(1, 1, 1)
  3134.  
  3135. framg.BackgroundTransparency = 1
  3136.  
  3137. local textg = Instance.new("ImageLabel", framg)
  3138.  
  3139. textg.Image = "http://www.roblox.com/asset/?id=93540532"
  3140.  
  3141. textg.Size = UDim2.new(1, 0, 1, 0)
  3142.  
  3143. textg.BackgroundTransparency = 1
  3144.  
  3145. end
  3146.  
  3147. end)
  3148.  
  3149. end
  3150.  
  3151. wait(Camball.WaitTime)
  3152.  
  3153. end
  3154.  
  3155. pcall(function() Camball.Part1:Remove() end)
  3156.  
  3157. pcall(function() Camball.Part2:Remove() end)
  3158.  
  3159. pcall(function() Camball.Humanoid:Remove() end)
  3160.  
  3161. pcall(function() Camball.Model:Remove() end)
  3162.  
  3163. Camball.Removed = true
  3164.  
  3165. --[12packkid's Camball do NOT copy or I will report you.]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement