Advertisement
Expheus

Untitled

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