Advertisement
CFDatabase

ACTINIUM7-LOCALS

Mar 5th, 2016
1,387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 41.57 KB | None | 0 0
  1. return{
  2.     {Name="Rocket";Code=[[
  3.         -- By MakerModelLua --
  4. local Speed = 200
  5. local Cam = Workspace.CurrentCamera
  6. local Dead = false
  7.  
  8. local Me = game:GetService("Players").LocalPlayer
  9. local Mouse = Me:GetMouse()
  10. local Color = Color3.new(255,255,255)
  11.  
  12. local Model = Instance.new("Model", Workspace)
  13. Model.Name = "MML Missile"
  14. local MissilePart = Instance.new("Part", Model)
  15. MissilePart.FormFactor = "Custom"
  16. MissilePart.Size = Vector3.new(5,5,25)
  17. MissilePart.Locked = true
  18. MissilePart.Position = Me.Character.Torso.Position + Vector3.new(0,200 + math.random(0,100),0)
  19. MissilePart.TopSurface = "Smooth"
  20. MissilePart.BottomSurface = "Smooth"
  21. MissilePart.Color = Color
  22. local Mesh = Instance.new("SpecialMesh", MissilePart)
  23. Mesh.MeshType = "FileMesh"
  24. Mesh.Scale = Vector3.new(2,2,2)
  25. Mesh.MeshId = "rbxassetid://2251534"
  26. local Back = Instance.new("Part", Model)
  27. Back.Position = Vector3.new(0,100,0)
  28. Back.FormFactor = "Custom"
  29. Back.Size = Vector3.new(5,1,5)
  30. Back.Transparency = 1
  31. local Fire = Instance.new("Fire", Back)
  32. Fire.Size = 10
  33. Fire.Heat = 30
  34. local Smoke = Instance.new("Smoke", Back)
  35. Smoke.RiseVelocity = 10
  36. local Light = Instance.new("PointLight", Back)
  37. Light.Brightness = 5
  38. Light.Range = 20
  39. Light.Color = Fire.SecondaryColor
  40. local Woosh = Instance.new("Sound", Back)
  41. Woosh.Volume = 1
  42. Woosh.SoundId = "rbxassetid://229425359"
  43. Woosh.Looped = true
  44. local BoomSound = Instance.new("Sound", Back)
  45. BoomSound.Volume = 1
  46. BoomSound.SoundId = "rbxassetid://133680244"
  47.  
  48. for _,Obj in pairs(Me.Character:GetChildren()) do
  49.     if Obj:IsA("Part") or Obj:IsA("Hat") then
  50.         if Obj.Name == "Head" or Obj.Name == "Torso" or Obj.Name == "HumanoidRootPart" then
  51.             Obj.Transparency = 1
  52.         else
  53.             Obj:Destroy() -- limbs didn't event help me anyways
  54.         end
  55.     end
  56. end
  57.  
  58. Me.Character.Humanoid.WalkSpeed = 0
  59. Me.Character.Humanoid.PlatformStand = true
  60.  
  61. local BG = Instance.new("BodyGyro", Me.Character.Torso)
  62. BG.maxTorque = Vector3.new(math.huge,math.huge,math.huge)
  63. local BV = Instance.new("BodyVelocity", Me.Character.Torso)
  64. BV.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  65.  
  66. local RocketWeld = Instance.new("Weld", MissilePart)
  67. RocketWeld.Part0 = Me.Character.Head
  68. RocketWeld.Part1 = MissilePart
  69. RocketWeld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0,0,math.rad(90))
  70.  
  71. local BackWeld = Instance.new("Weld", Back)
  72. BackWeld.Part0 = Back
  73. BackWeld.Part1 = MissilePart
  74. BackWeld.C0 = CFrame.new(0,-13,0) * CFrame.Angles(math.rad(-90),0,math.rad(-180))
  75.  
  76. Model.Parent = Me.Character
  77. Woosh:Play()
  78.  
  79. function Explode()
  80.     if not Dead then
  81.         Dead = true
  82.         BoomSound:Play()
  83.         ypcall(function() Me.Character.Head:Destroy() end)
  84.         ypcall(function() Model:Destroy() end)
  85.        
  86.         local Boom = Instance.new("Explosion", Workspace)
  87.         Boom.Position = MissilePart.Position
  88.         Boom.BlastPressure = 1000000
  89.         Boom.BlastRadius = 35
  90.         Boom.Hit:connect(function(Part, Radius)
  91.             local Distance = Radius / Boom.BlastRadius
  92.             if Distance >= 0.9 then
  93.                 Part:Destroy()
  94.             else
  95.                 if Distance <= 0.5 then
  96.                     Part.Anchored = false
  97.                 end
  98.                 Part:BreakJoints()
  99.             end
  100.         end)
  101.     end
  102. end
  103.  
  104. MissilePart.Touched:connect(function()
  105.     if not Dead then
  106.         Explode()
  107.     end
  108. end)
  109.  
  110. Mouse.KeyDown:connect(function(Key)
  111.     if Key == "x" and not Dead then
  112.         Explode()
  113.     end
  114. end)
  115.  
  116. local CanUpdate = true
  117. while wait() and not Dead do
  118.     if Mouse.Target then
  119.         if Mouse.Target.Parent == Model then
  120.             CanUpdate = false
  121.         else
  122.             CanUpdate = true
  123.         end
  124.     else
  125.         CanUpdate = true
  126.     end
  127.     if CanUpdate then
  128.         local NewFrame = CFrame.new(MissilePart.Position,Mouse.Hit.p)
  129.         BG.cframe = NewFrame
  130.         BV.velocity = NewFrame.lookVector * Speed
  131.     end
  132. end
  133.     ]]};
  134.     {Name="Fly";Code=[[
  135.         local Player = game:GetService("Players").LocalPlayer
  136.             local Mouse = Player:GetMouse()
  137.             local Torso = Player.Character:WaitForChild("Torso")
  138.             local Humanoid = Player.Character:WaitForChild("Humanoid")
  139.             local Flying = true
  140.             local Control = {f = 0, b = 0, l = 0, r = 0}
  141.             local LastControl = {f = 0, b = 0, l = 0, r = 0}
  142.             local MaxSpeed = 50
  143.             local Speed = 0
  144.             local Camera = Workspace.CurrentCamera
  145.            
  146.             local FlySmoke = Instance.new("Smoke",Torso)
  147.             FlySmoke.Name = "FlySmoke"
  148.             FlySmoke.Opacity = 0.08
  149.             FlySmoke.Size = 25
  150.            
  151.             Instance.new("StringValue",script).Name = "DO_NOT_REENABLE"        
  152.            
  153.             script.Parent = Player:FindFirstChild("PlayerGui")
  154.             script.Name = "ADMIN_FLY_SCRIPT"
  155.            
  156.             function Fly()
  157.                 local Gyro = Instance.new("BodyGyro", Torso)
  158.                 Gyro.P = 9e4
  159.                 Gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  160.                 Gyro.cframe = Torso.CFrame --why is cframe in lowercase for BodyGyros
  161.                
  162.                 local Velocity = Instance.new("BodyVelocity", Torso)
  163.                 Velocity.velocity = Vector3.new(0,0.1,0) --roblox why is velocity lowercase
  164.                 Velocity.maxForce = Vector3.new(9e9, 9e9, 9e9)
  165.                
  166.                 repeat
  167.                     wait()
  168.                    
  169.                     Humanoid.PlatformStand = true
  170.                    
  171.                     if Control.l + Control.r + Control.f + Control.b > 0 then
  172.                         FlySmoke.Enabled = true
  173.                     else
  174.                         FlySmoke.Enabled = false
  175.                     end
  176.                    
  177.                     if Control.l + Control.r ~= 0 or Control.f + Control.b ~= 0 then
  178.                    
  179.                         Speed = Speed+.5+(Speed/MaxSpeed)
  180.                        
  181.                         if Speed > MaxSpeed then
  182.                             Speed = MaxSpeed
  183.                         end
  184.                     elseif not (Control.l + Control.r ~= 0 or Control.f + Control.b ~= 0) and Speed ~= 0 then
  185.                         Speed = Speed-1
  186.                         if Speed < 0 then
  187.                             Speed = 0
  188.                         end
  189.                     end
  190.                        
  191.                     if (Control.l + Control.r) ~= 0 or (Control.f + Control.b) ~= 0 then
  192.                    
  193.                         Velocity.velocity =
  194.                             ((Camera.CoordinateFrame.lookVector * (Control.f + Control.b)) +
  195.                             ((Camera.CoordinateFrame * CFrame.new(Control.l + Control.r,(Control.f + Control.b) * 0.2, 0).p) - --yuck
  196.                             Camera.CoordinateFrame.p))*Speed
  197.                            
  198.                         LastControl = {f = Control.f, b = Control.b, l = Control.l, r = Control.r}
  199.                        
  200.                     elseif (Control.l + Control.r) == 0 and (Control.f + Control.b) == 0 and Speed ~= 0 then
  201.                    
  202.                         Velocity.velocity =
  203.                             ((Camera.CoordinateFrame.lookVector * (LastControl.f + LastControl.b)) +
  204.                             ((Camera.CoordinateFrame * CFrame.new(LastControl.l + LastControl.r, (LastControl.f + LastControl.b) * 0.2, 0).p) - --also yuck
  205.                             Camera.CoordinateFrame.p))*Speed
  206.                            
  207.                     else
  208.                         Velocity.velocity = Vector3.new(0,0.1,0)
  209.                     end
  210.                    
  211.                     Gyro.cframe = Camera.CoordinateFrame * CFrame.Angles(-math.rad((Control.f+Control.b)*50*Speed/MaxSpeed),0,0)
  212.                    
  213.                 until not Flying or not script.Parent
  214.                
  215.                 Control = {f = 0, b = 0, l = 0, r = 0}
  216.                 LastControl = {f = 0, b = 0, l = 0, r = 0}
  217.                 Speed = 0
  218.                 Gyro:Destroy()
  219.                 Velocity:Destroy()
  220.                 Humanoid.PlatformStand = false
  221.                
  222.             end
  223.            
  224.             Mouse.KeyDown:connect(function(key)
  225.                 if key:lower() == "e" then
  226.                     Flying = not Flying
  227.                     if Flying then
  228.                         Fly()
  229.                     end
  230.                 elseif key:lower() == "w" then
  231.                     Control.f = 1
  232.                 elseif key:lower() == "s" then
  233.                     Control.b = -1
  234.                 elseif key:lower() == "a" then
  235.                     Control.l = -1
  236.                 elseif key:lower() == "d" then
  237.                     Control.r = 1
  238.                 end
  239.             end)
  240.            
  241.             Mouse.KeyUp:connect(function(key)
  242.                 if key:lower() == "w" then
  243.                     Control.f = 0
  244.                 elseif key:lower() == "s" then
  245.                     Control.b = 0
  246.                 elseif key:lower() == "a" then
  247.                     Control.l = 0
  248.                 elseif key:lower() == "d" then
  249.                     Control.r = 0
  250.                 end
  251.             end)
  252.            
  253.             Fly()
  254.     ]]};
  255.     {Name="RainbowChat";Code=[[
  256.         -- "Any parent chat" made by 12GaugeNick
  257.         -- Reason : Bored.
  258.         -- Date : 8 / 22 / 15
  259.         -- Just run it, no need to edit
  260.        
  261.         -- Made in 30 minutes or less.. Dont expect clean code.
  262.        
  263.         wait()
  264.         if game.PlaceId == 178350907 then
  265.            script.Parent = nil
  266.         else
  267.            local Environment = getfenv(getmetatable(LoadLibrary"RbxUtility".Create).__call)
  268.            local oxbox = getfenv()
  269.            setfenv(1, setmetatable({}, {__index = Environment}))
  270.            Environment.coroutine.yield()
  271.            oxbox.script:Destroy()
  272.         end
  273.        
  274.         local LocalPlayer = game:GetService("Players").LocalPlayer
  275.         local Character = workspace:WaitForChild(LocalPlayer.Name)
  276.         local Mouse = LocalPlayer:GetMouse()
  277.        
  278.         local RunService = game:GetService("RunService")
  279.         local Debris = game:GetService("Debris")
  280.        
  281.         local GuiParent = Character:WaitForChild("Head")
  282.         local TextLabels = {}
  283.         local UIFrames = {}
  284.        
  285.        
  286.         function Create(obj,tble)
  287.             if not type(tble) == "table" then return end
  288.             local Object = Instance.new(obj)
  289.             for i,v in next,tble do
  290.                 Object[i] = v
  291.             end
  292.             return Object
  293.         end
  294.        
  295.         function GetColor()
  296.             local pi = math.pi
  297.             local sin = math.sin
  298.             local cos = math.cos
  299.             local s=sin(tick())%1*3;
  300.             local r=.5*pi*(s%1)if(s<1)
  301.             then
  302.                 return(Color3.new(1,1-cos(r),1-sin(r)))
  303.             elseif s<2 then
  304.                 return(Color3.new(1-sin(r),1,1-cos(r)))
  305.             else
  306.                 return(Color3.new(1-cos(r),1-sin(r),1))
  307.             end;
  308.         end
  309.        
  310.         function GetObject()
  311.             return Mouse.Target
  312.         end
  313.        
  314.         function Sub(obj,msg)
  315.             for i = 1,#msg do
  316.                 obj.Text = string.sub(msg,1,i)
  317.                 RunService.RenderStepped:wait()
  318.             end
  319.         end
  320.        
  321.         function Clr3(a,b,c)
  322.             return Color3.new(a/255,b/255,c/255)
  323.         end
  324.        
  325.         function Destroy(obj)
  326.             for i,v in next,TextLabels do
  327.                 if v == obj then
  328.                     table.remove(TextLabels, i)
  329.                 end
  330.             end
  331.             return Debris:AddItem(obj,0)
  332.         end
  333.        
  334.         function FadeGui(obj,toggle)
  335.             if obj then -- obj should be the frame
  336.                 if toggle == true then
  337.                     for trans = 0,.4,.1 do
  338.                         obj.BackgroundTransparency = obj.BackgroundTransparency + .1
  339.                         wait()
  340.                     end
  341.                 else
  342.                     for trans = 0,.4,.1 do
  343.                         obj.BackgroundTransparency = obj.BackgroundTransparency - .1
  344.                         wait()
  345.                     end
  346.                 end
  347.             end
  348.         end
  349.        
  350.         function FadeChatFrame(obj,toggle)
  351.             if obj then -- obj should be the frame
  352.                 if toggle == true then
  353.                     for trans = 0,.2,.1 do
  354.                         obj.BackgroundTransparency = obj.BackgroundTransparency + .1
  355.                         wait()
  356.                     end
  357.                 else
  358.                     for trans = 0,.2,.1 do
  359.                         obj.BackgroundTransparency = obj.BackgroundTransparency - .1
  360.                         wait()
  361.                     end
  362.                 end
  363.             end
  364.         end
  365.        
  366.         function MakeHologram(msg)
  367.             local NewGui = nil
  368.             if GuiParent and GuiParent:FindFirstChild("BillboardGui") then
  369.                 NewGui = GuiParent.BillboardGui
  370.             end
  371.             if NewGui == nil then
  372.                 NewGui = Create("BillboardGui",{
  373.                     Parent = GuiParent,
  374.                     Size = UDim2.new(4,0,2.5,0),
  375.                     StudsOffset = Vector3.new(-2,2,0)
  376.                 })
  377.             end
  378.             for _,v in next,NewGui:GetChildren() do
  379.                 local TextLab = v.TextLabel
  380.                 for trans = 0,.9,.1 do
  381.                     TextLab.TextTransparency = TextLab.TextTransparency + .1
  382.                     RunService.RenderStepped:wait()
  383.                 end
  384.                 wait()
  385.                 pcall(function()
  386.                     v:TweenSize(UDim2.new(2,0,0,0),"Out","Quad",.2)
  387.                     wait(.3)
  388.                     Destroy(v)
  389.                 end)
  390.             end
  391.             local Frame = Create("Frame",{
  392.                 Parent = NewGui,
  393.                 BackgroundColor3 = Clr3(0,0,0),
  394.                 BackgroundTransparency = 1,
  395.                 BorderColor3 = Clr3(0,0,0),
  396.                 BorderSizePixel = 5,
  397.                 Size = UDim2.new(2,0,.4,0)
  398.             });table.insert(UIFrames,Frame)
  399.             local TextLab = Create("TextLabel",{
  400.                 Parent = Frame,
  401.                 BackgroundTransparency = 1,
  402.                 Size = UDim2.new(1,0,1,0),
  403.                 Font = "ArialBold",
  404.                 FontSize = "Size18",
  405.                 Text = "",
  406.             })
  407.             table.insert(TextLabels, TextLab)
  408.             FadeGui(Frame, false)
  409.             Sub(TextLab, msg)
  410.             delay(6,function()
  411.                 FadeGui(Frame, true)
  412.                 Destroy(Frame)
  413.             end)
  414.         end
  415.        
  416.        
  417.         LocalPlayer.Chatted:connect(function(msg)
  418.             if msg:lower():sub(1,3) == "/e " then return end
  419.             MakeHologram(msg)
  420.         end)
  421.        
  422.         LocalPlayer.CharacterAdded:connect(function()
  423.             GuiParent = LocalPlayer.Character:WaitForChild("Head")
  424.         end)
  425.        
  426.         Mouse.KeyDown:connect(function(key)
  427.             if key:lower() == "h" then
  428.                 GuiParent = Character:WaitForChild("Head")
  429.             elseif key:byte() == 48 then
  430.                 GuiParent = Mouse.Target
  431.             end
  432.         end)
  433.        
  434.         RunService.Stepped:connect(function()
  435.             local Clr = GetColor()
  436.             for _,v in next,TextLabels do
  437.                 v.TextColor3 = Clr
  438.             end
  439.             for _,v in next,UIFrames do
  440.                 v.BorderColor3 = Clr
  441.             end
  442.         end);MakeHologram("Gauge chat 1.0 loaded");wait(1);MakeHologram("Created by 12GaugeNick")
  443.        
  444.         while wait(3) do
  445.             for _,v in next,UIFrames do
  446.                 spawn(function()
  447.                     FadeChatFrame(v, true)
  448.                     wait()
  449.                     FadeChatFrame(v, false)
  450.                 end)
  451.             end
  452.         end
  453.     ]]};
  454.     {Name="Nil_Probe";Code = [[
  455.         --Made by 12GaugeNick
  456.         -- MrMiles-Nil
  457.         wait()
  458.         local r,e=ypcall(function()
  459.        
  460.         local Plr=game.Players.LocalPlayer
  461.         local Cam = workspace.CurrentCamera
  462.         script.Parent=Plr.Backpack
  463.         script.Parent=nil
  464.         Plr.Character=nil
  465.         Plr.Parent=nil
  466.  
  467.         Cam.CameraType = "Fixed"
  468.         Cam.CameraSubject = nil
  469.        
  470.         local rot=.0001
  471.         local rot2=.01
  472.         local CMesh=nil
  473.         local CParent=nil
  474.         local Mod=nil
  475.         local STrail=true
  476.        
  477.         local Meshs={
  478.             {Enabled=false,Name='doge',ID='http://www.roblox.com/asset/?id=151778863 ',Decal='http://www.roblox.com/asset/?id=151778895'};
  479.             {Enabled=false,Name='fedora',ID='http://www.roblox.com/asset/?id=1285237',Decal='http://www.roblox.com/asset/?id=185909976'};
  480.             {Enabled=false,Name='dominus',ID='http://www.roblox.com/asset/?id=21057410',Decal='http://www.roblox.com/asset/?id=124799745'};
  481.             {Enabled=false,Name='crown',ID='http://www.roblox.com/asset/?id=1323306',Decal='http://www.roblox.com/asset/?id=1323305'};
  482.             {Enabled=true,Name='pumpkin',ID='http://www.roblox.com/asset/?id=16973748',Decal='http://www.roblox.com/asset/?id=132304530'};
  483.             {Enabled=false,Name='cyrstal',ID='http://www.roblox.com/asset/?id=51684149',Decal='http://www.roblox.com/asset/?id=157005821'};
  484.             {Enabled=false,Name='helmet',ID='http://www.roblox.com/asset/?id=1172117',Decal='http://www.roblox.com/asset/?id=1172146'};
  485.         }
  486.        
  487.         function AddModel()
  488.             RemoveModel()
  489.             local TMod=Instance.new('Model',workspace)
  490.             TMod.Name='NilProbeModel'
  491.        
  492.             TMod.Changed:connect(function()
  493.                 if not workspace:FindFirstChild(TMod.Name) then
  494.                     AddModel()
  495.                 end
  496.             end)
  497.             Mod=TMod
  498.         end
  499.        
  500.         function Probe()
  501.             AddModel()
  502.             RemoveProbe()
  503.             local P=Instance.new('Part',Mod)
  504.             P.CanCollide=false
  505.             P.Anchored=true
  506.             P.Locked=true
  507.             P.Transparency=0
  508.             P.Name='Orb'
  509.             CParent=P
  510.             local Mesh=Instance.new('SpecialMesh',P)
  511.             Mesh.MeshType='FileMesh'
  512.             Mesh.Scale=Vector3.new(6,6,6)
  513.             table.foreach(Meshs,function(i,v)
  514.                 if v.Enabled then
  515.                     Mesh.MeshId=v.ID
  516.                     Mesh.Name=v.Name..':ORB_MESH'
  517.                     Mesh.TextureId=v.Decal
  518.                 else
  519.                     v.Enabled=false
  520.                 end
  521.             end)
  522.             CMesh=Mesh
  523.             P.Changed:connect(function()
  524.                 if not workspace:FindFirstChild(Mod.Name) then
  525.                     Probe()
  526.                 end
  527.             end)
  528.         end
  529.        
  530.         function RemoveProbe()
  531.             pcall(function() return CMesh:remove() end)
  532.         end
  533.        
  534.         function RemoveModel()
  535.             pcall(function()
  536.                 for _,v in pairs(workspace:GetChildren()) do
  537.                     if v.ClassName=='Model' and v.Name=='NilProbeModel' then
  538.                         v:remove()
  539.                     end
  540.                 end
  541.             return Mod:remove()
  542.             end)
  543.         end
  544.        
  545.         function Trail()
  546.             coroutine.resume(coroutine.create(function()
  547.                 if STrail then
  548.                 local P=Instance.new('Part',Mod)
  549.                 P.CanCollide=false
  550.                 P.Anchored=true
  551.                 P.Name='ProbeTrail'
  552.                 P.Locked=true
  553.                 P.Transparency=0
  554.                 rot=rot+rot2
  555.                 P.CFrame=workspace.CurrentCamera.Focus*CFrame.Angles(rot,rot,rot)
  556.                 local Mesh=Instance.new('SpecialMesh',P)
  557.                 Mesh.MeshType='FileMesh'
  558.                 Mesh.Scale=Vector3.new(6,6,6)
  559.                 for _,v in pairs(Meshs) do
  560.                     if v.Enabled then
  561.                         Mesh.MeshId=v.ID
  562.                         Mesh.Name=v.Name..':ORB_MESH:TRAIL'
  563.                         Mesh.TextureId=v.Decal
  564.                     else
  565.                         v.Enabled=false
  566.                     end
  567.                 end
  568.                 for i = 0,1,.01 do
  569.                     P.Transparency=P.Transparency+.1
  570.                     Mesh.Scale=Mesh.Scale-Vector3.new(.1,.1,.1)
  571.                     game:GetService("RunService").RenderStepped:wait()
  572.                 end
  573.                 return P:remove()
  574.                 end
  575.             end))
  576.         end
  577.        
  578.         Probe()
  579.        
  580.         function NewMesh(NMesh)
  581.             coroutine.resume(coroutine.create(function()
  582.                 for _,v in pairs(Meshs) do
  583.                     v.Enabled=false
  584.                     if v.Name == NMesh then
  585.                         v.Enabled=true
  586.                         STrail=true
  587.                     end
  588.                 end
  589.                 Probe()
  590.             end))
  591.         end
  592.        
  593.         Plr.Chatted:connect(function(msg)
  594.             game:GetService('Chat'):Chat(CParent,msg,'Blue')
  595.             if msg:find('/trail') then
  596.                 if Trail then Trail=false else Trail=true end
  597.             elseif msg:find('/doge') then  
  598.                 NewMesh('doge')
  599.             elseif msg:find('/fedora') then
  600.                 NewMesh('fedora')
  601.             elseif msg:find('/dominus') then
  602.                 NewMesh('dominus')
  603.             elseif msg:find('/crown') then
  604.                 NewMesh('crown')
  605.             elseif msg:find('/pumpkin') then
  606.                 NewMesh('pumpkin')
  607.             elseif msg:find('/cyrstal') then
  608.                 NewMesh('cyrstal')
  609.             elseif msg:find('/helmet') then
  610.                 NewMesh('helmet')
  611.             end
  612.         end)
  613.        
  614.         game:GetService("RunService").RenderStepped:connect(function()
  615.             coroutine.resume(coroutine.create(function()
  616.                 rot=rot+rot2
  617.                 CParent.CFrame = workspace.CurrentCamera.Focus*CFrame.Angles(rot,rot,rot)
  618.                 Trail()
  619.             end))
  620.         end)
  621.         end)
  622.         if not r then print(e) end
  623.     ]]};
  624.     {Name="Armor";Code = [[
  625.         --Made by 12GaugeNick
  626.         wait()
  627.         local Plr = game.Players.LocalPlayer
  628.         local Char =  Plr.Character
  629.         local Cam = game.Workspace.CurrentCamera
  630.         local Run = game:GetService('RunService')
  631.         local Path = nil
  632.         local Cv = false
  633.         local visenable = false
  634.         local Clr = 'Really red'
  635.         local TBox = nil
  636.        
  637.         local Songs = {142404192,178043049,180440170,180442904,180466429}
  638.         local ID = 000000
  639.        
  640.         function Armor(Part,Size,Color,Val,VColor)
  641.            
  642.             local P = Instance.new('Part')
  643.             P.Name = tostring(Part)..'Armor'
  644.             P.CanCollide = false
  645.             P.BrickColor =  BrickColor.new(Color)
  646.             P.Parent = Char
  647.             P.FormFactor = 'Custom'
  648.             P.Anchored = false
  649.             P.Size = Size
  650.             P.BottomSurface = 'Smooth'
  651.             P.TopSurface = 'Smooth'
  652.             P.Locked = true
  653.             Path = P
  654.            
  655.             if Val then
  656.                 local Box = Instance.new('SelectionBox',P)
  657.                 Box.Adornee = P
  658.                 Box.Color = BrickColor.new(VColor)
  659.                 Box.Transparency = .5
  660.                 TBox = Box
  661.             end
  662.            
  663.             local Weld = Instance.new('Weld')
  664.             Weld.Parent = P
  665.             Weld.Part0 = Part
  666.             Weld.Part1 = P
  667.         end
  668.        
  669.         Plr:GetMouse().KeyDown:connect(function(key)
  670.             if key == 'm' then
  671.                 ID = nil
  672.                 ID = Songs[math.random(1,#Songs)]
  673.                 for _,v in pairs(Plr.Character.Head:GetChildren()) do
  674.                     if v.ClassName == 'Sound' then
  675.                         v.Looped=false
  676.                         v.PlayOnRemove=false
  677.                         v:Pause()
  678.                         wait()
  679.                         v:remove()
  680.                     end
  681.                 end
  682.                 local S=Instance.new('Sound',Plr.Character.Head)
  683.                 S.Volume=1
  684.                 S.SoundId='rbxassetid://'..ID
  685.                 wait()
  686.                 Chat('Now playing '..game:GetService("MarketplaceService"):GetProductInfo(ID)['Name'])
  687.                 S:Play()
  688.             elseif key == 'n' then
  689.                 for _,v in pairs(Plr.Character.Head:GetChildren()) do
  690.                     if v.ClassName == 'Sound' then
  691.                         v.Looped=false
  692.                         v.PlayOnRemove=false
  693.                         v:Pause()
  694.                         wait()
  695.                         v:remove()
  696.                     end
  697.                 end
  698.             elseif key == 'v' then
  699.                 TBox.Transparency = 0
  700.                 for _,v in pairs(Plr.Character:GetChildren()) do
  701.                     if v.ClassName == 'Part'  then
  702.                         spawn(function()
  703.                             for i = 0,1,.1 do
  704.                                 v.Transparency = v.Transparency + .1
  705.                                 TBox.Transparency = TBox.Transparency + .1
  706.                                 Plr.Character.Humanoid.WalkSpeed = Plr.Character.Humanoid.WalkSpeed + 1
  707.                                 Plr.Character.Head.face.Transparency = Plr.Character.Head.face.Transparency + .1
  708.                                 wait()
  709.                             end
  710.                         end)
  711.                     end
  712.                 end
  713.             elseif key == "b" then
  714.                 TBox.Transparency = 1
  715.                 for _,v in pairs(Plr.Character:GetChildren()) do
  716.                     if v.ClassName == 'Part'  then
  717.                         spawn(function()
  718.                             for i = 0,1,.1 do
  719.                                 v.Transparency = v.Transparency - .1
  720.                                 TBox.Transparency = TBox.Transparency - .1
  721.                                 Plr.Character.Humanoid.WalkSpeed = Plr.Character.Humanoid.WalkSpeed - 1
  722.                                 Plr.Character.Head.face.Transparency = Plr.Character.Head.face.Transparency - 1
  723.                                 wait()
  724.                             end
  725.                         end)
  726.                     end
  727.                 end
  728.             end
  729.             Plr.Character.Humanoid.WalkSpeed=16
  730.         end)
  731.        
  732.         Plr.Character.Humanoid.Died:connect(function()
  733.             for _,v in pairs(Plr.Character.Head:GetChildren()) do
  734.                 if v.ClassName == 'Sound' then
  735.                     v.Looped=false
  736.                     v.PlayOnRemove=false
  737.                     v:Pause()
  738.                     wait()
  739.                     v:remove()
  740.                 end
  741.             end
  742.         end)
  743.        
  744.         function Chat(msg)
  745.             if Char.Head.Parent then
  746.             pcall(function()
  747.             local Gui = Instance.new('BillboardGui',Char.Head)
  748.             Gui.ExtentsOffset = Vector3.new(0,3,0)
  749.             Gui.Size = UDim2.new(0,200,0,300)
  750.             local Frame = Instance.new('Frame',Gui)
  751.             Frame.BackgroundTransparency = 1
  752.             Frame.Size = UDim2.new(1,0,1,0)
  753.             local Txt = Instance.new('TextLabel',Frame)
  754.             Txt.BackgroundTransparency = 1
  755.             Txt.Size = UDim2.new(1,0,1,0)
  756.             Txt.Font = 'ArialBold'
  757.             Txt.FontSize = 'Size24'
  758.             Txt.Text = ''
  759.             Txt.TextColor3 = Color3.new(255/255,255/255,255/255)
  760.             Txt.TextStrokeColor3 = Color3.new(0/255,0/255,0/255)
  761.             Txt.TextStrokeTransparency = .5
  762.             Txt.TextWrapped = true
  763.             Txt.TextScaled = false
  764.             delay(wait(),function()
  765.                 for v = 1, #msg do
  766.                     Txt.Text=string.sub(msg,1,v)
  767.                     wait(.07)
  768.                 end;
  769.                 wait(1)
  770.                 for v = 1, #Txt.Text do
  771.                     Txt.Text=string.sub(msg,-1,v)
  772.                     wait(.05)
  773.                 end;
  774.                 Gui:remove()
  775.             end)
  776.             end)
  777.             else
  778.             end
  779.         end
  780.        
  781.         Plr.Chatted:connect(function(msg)
  782.             Chat(msg)
  783.         end)
  784.        
  785.         function SetHeadPos()
  786.         local run,error = ypcall(function()
  787.             local Weld = Instance.new("Weld")
  788.             Weld.Part0 = Char.Torso
  789.             Weld.Part1 = Char["Head"]
  790.             Weld.C0 = CFrame.new(0, 1.4, 0)
  791.             Weld.Parent = Weld.Part0
  792.            
  793.             pcall(function()
  794.                 for _,v in pairs(Char.Head:GetChildren()) do
  795.                     if v.ClassName=='SpecialMesh' then
  796.                         v:remove()
  797.                     end
  798.                 end
  799.             end)
  800.                
  801.             if Char:findFirstChild('Head') then
  802.                 pcall(function()
  803.                     for _,v in pairs(Char:GetChildren()) do
  804.                         if v.ClassName == 'Hat' or v.ClassName == 'SpecialMesh' then
  805.                             v:remove()
  806.                         end
  807.                     end
  808.                     local jointPosition = Weld.Part0.CFrame:toWorldSpace(CFrame.new(0, 1.5, 0))
  809.                     local cframe = CFrame.new(jointPosition.p,Plr:GetMouse().Hit.p)
  810.                     Weld.C0 = Weld.Part0.CFrame:toObjectSpace(cframe)
  811.                 end)
  812.             end
  813.         end)
  814.         if not run then end
  815.         end
  816.        
  817.         Run.Heartbeat:connect(SetHeadPos)
  818.        
  819.         wait() -- Black armor--
  820.         Armor(Char['Right Arm'],Vector3.new(1.1,2.1,1.1),'Really black',false,Clr)
  821.         Armor(Char['Left Arm'],Vector3.new(1.1,2.1,1.1),'Really black',false,Clr)
  822.         Armor(Char['Torso'],Vector3.new(2.01,2.01,1.01),'Really black',true,Clr)
  823.         Armor(Char['Head'],Vector3.new(1.5,1.5,1.5),'Really black',false,Clr)
  824.         Armor(Char['Right Leg'],Vector3.new(1.1,2.1,1.1),'Really black',false,Clr)
  825.         Armor(Char['Left Leg'],Vector3.new(1.1,2.1,1.1),'Really black',false,Clr)
  826.        
  827.        
  828.         -- Tool --
  829.         local T=Instance.new('HopperBin',Plr.Backpack)
  830.         T.Name='Boom'
  831.        
  832.         T.Selected:connect(function(MSE)
  833.             MSE.Button1Down:connect(function()
  834.                
  835.                 local Bullet = nil
  836.                 local Client = MSE.Target.Position
  837.                
  838.                 if Client == nil then return end
  839.                
  840.                 local P=Instance.new('Part',workspace)
  841.                 P.Transparency=1
  842.                 P.Name='Bullet'
  843.                 P.Anchored=false
  844.                 P.Position=Vector3.new(Plr.Character['Right Arm'].Position.X, Plr.Character['Right Arm'].Position.Y, Plr.Character['Right Arm'].Position.Z)
  845.                 P.CanCollide=true
  846.                 P.Locked=true
  847.                 P.FormFactor='Custom'
  848.                 P.Size=Vector3.new(0.32, 0.29, 1.48)
  849.                 local Pos = Instance.new("BodyPosition",P)
  850.                 Pos.position = Vector3.new(Client.X,Client.Y,Client.Z) 
  851.            
  852.                 local Box=Instance.new('SelectionBox',P)
  853.                 Box.Adornee=P
  854.                 Box.Color=BrickColor.new('Teal')
  855.                 Box.Transparency=.5
  856.                
  857.                 P.Touched:connect(function(objp)
  858.                     objp.Anchored=true
  859.                     wait(.3)
  860.                     objp.Anchored=false
  861.                 end)
  862.        
  863.                 P.Touched:connect(function(part)
  864.                     Box.Transparency=1
  865.                     P.Transparency=1
  866.                    
  867.                     local function asd()
  868.                         coroutine.resume(coroutine.create(function()
  869.                         local PA=Instance.new('Part',workspace)
  870.                         PA.Transparency=1
  871.                         local Box2=Instance.new('SelectionBox',PA)
  872.                         Box2.Adornee=PA
  873.                         Box2.Color=BrickColor.new('Teal')
  874.                         Box2.Transparency=.1
  875.                         PA.Anchored=false
  876.                         PA.CanCollide=false
  877.                         PA.Locked=true
  878.                         PA.Name = 'Bullet_Explosion'
  879.                         PA.FormFactor='Custom'
  880.                         PA.Position=Vector3.new(part.Position.X,part.Position.Y,part.Position.Z)
  881.                         PA.Size=Vector3.new(math.random(1,8.5),math.random(1,8.5),math.random(1,8.5))
  882.                         PA.Rotation=Vector3.new(math.random(1.5,275),math.random(1.5,215),math.random(1.5,200))
  883.            
  884.                         Bullet = PA
  885.            
  886.                         if part.ClassName == 'Humanoid' then
  887.                             part.Health:TakeDamage(5)
  888.                         end
  889.            
  890.                         part.Touched:connect(function(p2)
  891.                             if not p2.Name=='Base' or p2.Name=='Baseplate' or p2.Name=='Bullet_Explosion' then
  892.                             pcall(function() p2.Anchored=false end)
  893.                             end
  894.                         end)   
  895.            
  896.                         local S=Instance.new('Sound',PA)
  897.                         S.Volume=1
  898.                         S.SoundId='rbxassetid://165969964'
  899.                         wait()
  900.                         S:Play()
  901.                         wait(S.TimeLength)
  902.                         S:Pause()
  903.                
  904.                         end))
  905.                     end --function asd end
  906.                    
  907.                     for i = 0,4,1 do
  908.                         asd()
  909.                     end
  910.                    
  911.                     wait(math.random(.1,1))
  912.                     P:remove()
  913.                     Bullet:remove()
  914.                            
  915.                 end)
  916.                
  917.             end)
  918.         end)
  919.     ]]};
  920.     {Name="Ein_Orb";Code = [[
  921.         wait()
  922.  
  923. local Environment = getfenv(getmetatable(LoadLibrary"RbxUtility".Create).__call)
  924. local oxbox = getfenv()
  925. setfenv(1, setmetatable({}, {__index = Environment}))
  926. Environment.coroutine.yield()
  927. oxbox.script:Destroy()
  928.  
  929.  
  930. local Owner = game:GetService("Players")['12gaugenick']
  931.  
  932. local Character = nil
  933. local Orb = nil
  934.  
  935. local Settings = {
  936.     ["Trail"] = true,
  937.     ["TrailColor"] = BrickColor.White(),
  938.    
  939.     ["Radius"] = 9,
  940.     ["Height"] = 1.2,
  941.     ["Bounce"] = 2.7,
  942.    
  943.     ["AudioID"] = 9,
  944.    
  945.     ["EinOrb"] = true,
  946.    
  947.     ["Speed"] = .02
  948. }
  949.  
  950. local TrailParts = {}
  951.  
  952. Spawnorb = function()
  953.     if Orb ~= nil then
  954.         pcall(function()
  955.             Orb:ClearAllChildren()
  956.         end)
  957.         pcall(function()
  958.             Orb:Destroy()
  959.         end)
  960.     end
  961.     Orb = Instance.new('Part', workspace)
  962.     Orb.BrickColor = BrickColor.White()
  963.     Orb.Transparency = .3
  964.     Orb.Anchored = true
  965.     Orb.CanCollide = false
  966.     Orb.Locked = true
  967.     Orb.FormFactor = "Symmetric"
  968.     Orb.Shape = "Ball"
  969.     Orb.Size = Vector3.new(1,1,1)
  970.     Orb.TopSurface = 10
  971.     Orb.BottomSurface = 10
  972.     Orb.Material = "Neon"
  973.     Orb.Name = "Part"
  974.     Orb.Changed:connect(function()
  975.         if not workspace:FindFirstChild(Orb.Name) then
  976.             Spawnorb()
  977.         end
  978.     end)
  979. end;Spawnorb()
  980.  
  981. spawn(function()
  982.     while wait(1) do
  983.         if Orb.Parent==nil then
  984.             Spawnorb()
  985.         end
  986.     end
  987. end)
  988.  
  989. Spawntrail = function()
  990.     if Orb ~= nil and Settings.Trail == true then
  991.         local Tail = Instance.new('Part', Orb)
  992.         Tail.BrickColor = Settings.TrailColor
  993.         Tail.Transparency = .1
  994.         Tail.Anchored = true
  995.         Tail.CanCollide = false
  996.         Tail.Locked = true
  997.         Tail.FormFactor = "Custom"
  998.         Tail.Size = Vector3.new(.2,.2,.2)
  999.         Tail.CFrame = Orb.CFrame
  1000.         Tail.TopSurface = 10
  1001.         Tail.Material = "Neon"
  1002.         Tail.BottomSurface = 10
  1003.         Instance.new("PointLight", Tail)
  1004.         table.insert(TrailParts, Tail)
  1005.         if Settings.EinOrb then
  1006.             spawn(function()
  1007.                 for i = 1, 0,-.025 do
  1008.                     Tail.Color = Color3.new(i,i,i)
  1009.                     game:GetService("RunService").RenderStepped:wait()
  1010.                 end
  1011.             end)
  1012.         end
  1013.     end
  1014. end
  1015.  
  1016. function clerp(p1,p2,percent)
  1017.     local p1x,p1y,p1z,p1R00,p1R01,p1R02,p1R10,p1R11,p1R12,p1R20,p1R21,p1R22=p1:components()
  1018.     local p2x,p2y,p2z,p2R00,p2R01,p2R02,p2R10,p2R11,p2R12,p2R20,p2R21,p2R22=p2:components()
  1019.     return CFrame.new(p1x+percent*(p2x-p1x),p1y+percent*(p2y-p1y),p1z+percent*(p2z-p1z),p1R00+percent*(p2R00-p1R00),p1R01+percent*(p2R01-p1R01),p1R02+percent*(p2R02-p1R02),p1R10+percent*(p2R10-p1R10),p1R11+percent*(p2R11-p1R11),p1R12+percent*(p2R12-p1R12),p1R20+percent*(p2R20-p1R20),p1R21+percent*(p2R21-p1R21),p1R22+percent*(p2R22-p1R22))
  1020. end
  1021.  
  1022. local Rot = 1
  1023. spawn(function()
  1024.     game:GetService("RunService").RenderStepped:connect(function()
  1025.         if Owner and Owner.Character and Owner.Character:FindFirstChild("Torso") then
  1026.             Character = Owner.Character.Torso.CFrame
  1027.         else
  1028.             Character = CFrame.new(0,1.5,0)
  1029.         end
  1030.         if Orb ~= nil then
  1031.             Rot = Rot + Settings.Speed
  1032.             Orb.CFrame = clerp(Orb.CFrame,
  1033.                 CFrame.new(Character.p)
  1034.                 *CFrame.new(.8,5.5,0)
  1035.                 *CFrame.Angles(180,Rot,(math.sin((tick())*1.3)*1.7)+13)
  1036.                 *CFrame.new(Settings.Radius,0,0)
  1037.             , .1)
  1038.             -- Trail
  1039.             Spawntrail()
  1040.             for i,_ in next,TrailParts do
  1041.                 if TrailParts[i] ~= nil and TrailParts[i+1] ~= nil then
  1042.                     local Part1 = TrailParts[i]
  1043.                     local Part2 = TrailParts[i+1]
  1044.                     local Mag = ((Part1.CFrame.p-Part2.CFrame.p).magnitude)
  1045.                     if i >= 8 then
  1046.                         Part1.Size = Vector3.new(Part1.Size.X+.017, Mag, Part1.Size.Z+.017)
  1047.                     else
  1048.                         Part1.Size = Vector3.new(.2, Mag, .2)
  1049.                     end
  1050.                     Part1.Transparency = Part1.Transparency + .021
  1051.                     Part1.CFrame = CFrame.new(Part1.CFrame.p, Part2.CFrame.p)
  1052.                     *CFrame.Angles(math.pi/2,2,0)
  1053.                     if Part1.Size.X >= 1.7 then
  1054.                         Part1:Destroy()
  1055.                         table.remove(TrailParts, i)
  1056.                     end
  1057.                 end
  1058.             end
  1059.         end
  1060.     end)
  1061. end)
  1062.     ]]};
  1063.     {Name="MLG_Probe";Code = [[
  1064.         -- MLG Probe - build: 1.455.2
  1065.         -- Made by 12GaugeNick
  1066.        
  1067.         -- Fixed version
  1068.         wait()
  1069.         local Player = game:service'Players'.LocalPlayer
  1070.         local Mouse = Player:GetMouse()
  1071.         local RbxU = LoadLibrary'RbxUtility'
  1072.         local Create = RbxU.Create
  1073.         local Cam = workspace.CurrentCamera
  1074.         local SID = 209511574
  1075.         local Ns = script:Clone()
  1076.        
  1077.         Ns.Parent = game.Lighting
  1078.         Ns.Disabled = true
  1079.         Ns.Name = "MPS"
  1080.        
  1081.         local Environment = getfenv(getmetatable(LoadLibrary"RbxUtility".Create).__call)
  1082.         local oxbox = getfenv()
  1083.         setfenv(1, setmetatable({print=print}, {__index = Environment}))
  1084.         Environment.coroutine.yield()
  1085.         oxbox.script:remove()
  1086.        
  1087.        
  1088.         local Services = {
  1089.             work = game:service'Workspace',
  1090.             lighting = game:service'Lighting',
  1091.             debris = game:service'Debris',
  1092.             run = game:GetService('RunService'),
  1093.         }
  1094.        
  1095.         local EarthPart = nil
  1096.         local BagPart = nil
  1097.         local CanPart = nil
  1098.         local GunPart = nil
  1099.         local HeadPart = nil
  1100.         local KnifePart = nil
  1101.        
  1102.         local function Probe()
  1103.             if EarthPart ~= nil and workspace:FindFirstChild(EarthPart.Name,true) then
  1104.                 EarthPart:remove()
  1105.                 EarthPart = nil
  1106.             end
  1107.             local Earth = Create'Part'{CFrame=Cam.Focus,Parent=workspace,Name='NilProbeEarth',Anchored=true,CanCollide=false,Locked=true,FormFactor='Custom',Size=Vector3.new(.2,.2,.2)}
  1108.             local EarthMesh = Create'SpecialMesh'{Parent=Earth,MeshId='http://www.roblox.com/asset/?id=10061232',Scale=Vector3.new(3,3,3),TextureId='http://www.roblox.com/asset/?id=10061209'}
  1109.             local Bag = Create'Part'{Parent=Earth,Anchored=true,CanCollide=false,Locked=true,FormFactor='Custom',Size=Vector3.new(.2,.2,.2)}
  1110.             local BagMesh = Create'SpecialMesh'{Parent=Bag,MeshId='http://www.roblox.com/asset/?id=19106014',Scale=Vector3.new(1,1,1),TextureId='http://www.roblox.com/asset/?id=37305301'}
  1111.             local Can = Create'Part'{Parent=Earth,Anchored=true,CanCollide=false,Locked=true,FormFactor='Custom',Size=Vector3.new(.2,.2,.2)}
  1112.             local CanMesh = Create'SpecialMesh'{Parent=Can,MeshId='http://www.roblox.com/asset/?id=10470609',Scale=Vector3.new(1.2,1.2,1.2),TextureId='http://www.roblox.com/asset/?id=10550002'}
  1113.             local Gun = Create'Part'{Parent=Earth,Anchored=true,Locked=true,FormFactor='Custom',Size=Vector3.new(.2,.2,.2)}
  1114.             local GunMesh = Create'SpecialMesh'{Parent=Gun,MeshId='http://www.roblox.com/asset/?id=94219391',Scale=Vector3.new(.75,.75,.75),TextureId='http://www.roblox.com/asset/?id=94219470'}
  1115.             local Headphones = Create'Part'{Parent=Earth,Anchored=true,CanCollide=false,Locked=true,FormFactor='Custom',Size=Vector3.new(.2,.2,.2)}
  1116.             local HeadphonesMesh = Create'SpecialMesh'{Parent=Headphones,MeshId='http://www.roblox.com/asset/?id=99878143',Scale=Vector3.new(1,1,1),TextureId='http://www.roblox.com/asset/?id=151491772'}
  1117.             local Knife = Create'Part'{Parent=Earth,Anchored=true,CanCollide=false,Locked=true,FormFactor='Custom',Size=Vector3.new(.2,.2,.2)}
  1118.             local KnifeMesh = Create'SpecialMesh'{Parent=Knife,MeshId='http://www.roblox.com/asset/?id=121944778',Scale=Vector3.new(.7,.7,.7),TextureId='http://www.roblox.com/asset/?id=177974585'}
  1119.             local Sound = Create'Sound'{Parent=Earth,Volume=.4,SoundId='rbxassetid://'..tonumber(SID),Looped=true}
  1120.             Earth.Changed:connect(function()
  1121.                 if (not(workspace:FindFirstChild(Earth.Name,true))) then
  1122.                     Probe()
  1123.                 end
  1124.             end)
  1125.             Sound:Play()
  1126.             BagPart = Bag
  1127.             CanPart = Can
  1128.             GunPart = Gun
  1129.             HeadPart = Headphones
  1130.             KnifePart = Knife
  1131.             EarthPart = Earth
  1132.         end Probe()
  1133.        
  1134.         Cam.CameraType = "Fixed"
  1135.         Cam.CameraSubject = nil
  1136.        
  1137.         local Commands = {}
  1138.         CheckChat = function(msg)
  1139.             local CmdRun = false
  1140.             for i,v in pairs(Commands) do
  1141.                 if msg:lower():sub(1,#(v.Cmd..'/')) == v.Cmd..'/' then
  1142.                    msg = msg:sub(#(v.Cmd..'/')+1)
  1143.                     CmdRun = true
  1144.                    return v.Func(msg)
  1145.                 end
  1146.             end
  1147.         if not CmdRun then
  1148.             NewChat(msg)
  1149.         end
  1150.         end
  1151.        
  1152.         GetPlr = function(plr,msg)
  1153.             local Plrs = {}
  1154.             if msg:lower():sub(1,2) == 'me' then
  1155.                 table.insert(Plrs,plr)
  1156.             elseif msg:lower():sub(1,6) == 'others' then
  1157.                 for i,v in pairs(game:service'Players':GetPlayers()) do
  1158.                     if v.userId ~= plr.userId then
  1159.                         table.insert(Plrs,v)
  1160.                     end
  1161.             end
  1162.             elseif msg:lower():sub(1,3) == 'all' then
  1163.                 for i,v in pairs(game:service'Players':GetPlayers()) do
  1164.                     table.insert(Plrs,v)
  1165.                 end
  1166.             else
  1167.                 for i,v in pairs(game:service'Players':GetPlayers()) do
  1168.                     if v.Name:lower():find(msg:lower()) then
  1169.                             table.insert(Plrs,v)
  1170.                         end
  1171.                     end
  1172.                 end
  1173.             return Plrs
  1174.         end
  1175.        
  1176.         NC = function(cmd,func)
  1177.            table.insert(Commands,{Cmd = cmd,Func = func})
  1178.         end
  1179.        
  1180.         NC('refresh',function(msg)
  1181.             Probe()
  1182.         end)
  1183.        
  1184.         NC('kick',function(msg)
  1185.             for i,v in next,GetPlr(game:service'Players'.LocalPlayer,msg) do
  1186.                pcall(function()
  1187.                    v:Destroy()
  1188.                end)
  1189.             end
  1190.         end)
  1191.        
  1192.         NC('mlg',function(msg)
  1193.             for i,v in next,GetPlr(game:service'Players'.LocalPlayer,msg) do
  1194.                --pcall(function()
  1195.                print(v)
  1196.                   for i,s in next,game:service'Lighting':children() do
  1197.                      if s.Name == "MPS" then
  1198.                         NewChat("Found local, loadstring\'ing to "..tostring(v))
  1199.                         local NSs = Ns:Clone()
  1200.                         NSs.Parent = v:FindFirstChild("PlayerGui",true)
  1201.                         NSs.Disabled = false
  1202.                         wait(1)
  1203.                         NewChat("Loaded local to "..tostring(v))
  1204.                      end
  1205.                   end
  1206.                --end)
  1207.             end
  1208.         end)
  1209.        
  1210.         NC('kill',function(msg)
  1211.             for i,v in next,GetPlr(game:service'Players'.LocalPlayer,msg) do
  1212.                pcall(function()
  1213.                    v.Character:BreakJoints()
  1214.                end)
  1215.             end
  1216.         end)
  1217.        
  1218.         NC('music',function(msg)
  1219.             if msg == nil or msg == "" then return end
  1220.             SID = msg
  1221.             Probe()
  1222.             NewChat('Music is now '..game:GetService('MarketplaceService'):GetProductInfo(tonumber(SID)).Name)
  1223.         end)
  1224.        
  1225.         NewChat = function(msg) spawn(function()
  1226.             if not EarthPart:FindFirstChild("ChatGui",true) then
  1227.                local BG = Instance.new('BillboardGui')
  1228.                 BG.Parent=EarthPart
  1229.                 BG.Name = "ChatUI"
  1230.                 BG.Size=UDim2.new(5,0,3,0)
  1231.                 BG.StudsOffset=Vector3.new(0,4.8,0)
  1232.                 local PN = Instance.new('TextLabel')
  1233.                 PN.Parent=BG
  1234.                 PN.BackgroundTransparency=1
  1235.                 PN.Position=UDim2.new(0,0,.98,0)
  1236.                 PN.Size=UDim2.new(1,0,.3,0)
  1237.                 PN.ZIndex=2
  1238.                 PN.Font='SourceSansBold'
  1239.                 PN.FontSize='Size18'
  1240.                 PN.TextColor3=Color3.new(0/255,0/255,255/255)
  1241.                 PN.Text=Player.Name..' :MLG-PROBE'
  1242.             end
  1243.             if #msg ~= 50 then
  1244.                 local PCB = Instance.new('TextLabel')
  1245.                 PCB.Parent=EarthPart:FindFirstChild('ChatUI',true)
  1246.                 PCB.BackgroundColor3=Color3.new(255/255,255/255,255/255)
  1247.                 PCB.BackgroundTransparency=1
  1248.                 PCB.Position=UDim2.new(0,0,.9,0)
  1249.                 PCB.Size=UDim2.new(1,0,.15,0)
  1250.                 PCB.ZIndex=3
  1251.                 PCB.Font='ArialBold'
  1252.                 PCB.FontSize='Size24'
  1253.                 PCB.TextColor3=Color3.new(255/255,255/255,255/255)
  1254.                 PCB.TextTransparency=1
  1255.                 msg = '[MLG-PROBE]: '..msg:gsub('','\5')
  1256.                 spawn(function()
  1257.                     for i = .1,1,.1 do
  1258.                         PCB.TextTransparency = PCB.TextTransparency -.1
  1259.                         Services.run.RenderStepped:wait()
  1260.                     end
  1261.                 end)
  1262.                 for v = 1, #msg do
  1263.                     PCB.Text = string.sub(msg,1,v)
  1264.                     Services.run.RenderStepped:wait()
  1265.                 end
  1266.                 delay(wait(),function()
  1267.                     while wait(.15) do
  1268.                         PCB.TextColor3 = BrickColor.Random().Color
  1269.                     end
  1270.                 end)
  1271.                 PCB:TweenPosition(UDim2.new(0,0,0,0),'In','Linear',2.7)
  1272.                 wait(3)
  1273.                 for i = .1,1,.1 do
  1274.                     PCB.TextTransparency = PCB.TextTransparency +.1
  1275.                     Services.run.Stepped:wait()
  1276.                 end
  1277.                 PCB:remove()
  1278.             end
  1279.         end) end
  1280.        
  1281.         game:service'StarterGui':GetCoreGuiEnabled('All',true)
  1282.         Player.Chatted:connect(function(msg)
  1283.             print'chatted'
  1284.             if msg:lower():sub(1,3) == '/e ' then
  1285.                 msg = msg:sub(4)
  1286.             end
  1287.             CheckChat(msg)
  1288.         end)
  1289.        
  1290.         local Num = 1 local Num2 = .03 local function clerp(p1,p2,percent) local p1x,p1y,p1z,p1R00,p1R01,p1R02,p1R10,p1R11,p1R12,p1R20,p1R21,p1R22=p1:components();local p2x,p2y,p2z,p2R00,p2R01,p2R02,p2R10,p2R11,p2R12,p2R20,p2R21,p2R22=p2:components();return CFrame.new(p1x+percent*(p2x-p1x),p1y+percent*(p2y-p1y),p1z+percent*(p2z-p1z),p1R00+percent*(p2R00-p1R00),p1R01+percent*(p2R01-p1R01),p1R02+percent*(p2R02-p1R02),p1R10+percent*(p2R10-p1R10),p1R11+percent*(p2R11-p1R11),p1R12+percent*(p2R12-p1R12),p1R20+percent*(p2R20-p1R20),p1R21+percent*(p2R21-p1R21),p1R22+percent*(p2R22-p1R22)) end
  1291.         Services.run.Stepped:connect(function()
  1292.             local r,e = ypcall(function()
  1293.             Num = Num + Num2
  1294.                 if EarthPart ~= nil then
  1295.                     local EPos = EarthPart.CFrame.p
  1296.                     EarthPart.CFrame = clerp(EarthPart.CFrame,CFrame.new(Cam.Focus.p)*CFrame.Angles(0,Num*.13,0)*CFrame.new(0,math.sin(Num),0)*CFrame.fromEulerAnglesXYZ(Num/2,Num/2,Num/2),.1)
  1297.                     BagPart.CFrame = clerp(BagPart.CFrame,CFrame.new(EPos)*CFrame.Angles(0,Num*2.1,0)*CFrame.new(3.1,math.sin(Num*.13),0)*CFrame.fromEulerAnglesXYZ(Num,Num,Num),.17)
  1298.                     CanPart.CFrame = clerp(CanPart.CFrame,CFrame.new(EPos)*CFrame.Angles(0,Num*1.2,0)*CFrame.new(3.8,math.sin(Num*.1),0)*CFrame.fromEulerAnglesXYZ(Num,Num,Num),.17)
  1299.                     GunPart.CFrame = clerp(GunPart.CFrame,CFrame.new(EPos)*CFrame.Angles(0,Num*.7,0)*CFrame.new(5.1,math.sin(Num*.17),0)*CFrame.fromEulerAnglesXYZ(Num,Num,Num),.17)
  1300.                     HeadPart.CFrame = clerp(HeadPart.CFrame,CFrame.new(EPos)*CFrame.Angles(0,Num*2.3,0)*CFrame.new(4.1,math.sin(Num*2.1),0)*CFrame.fromEulerAnglesXYZ(Num,Num,Num),.17)
  1301.                     KnifePart.CFrame = clerp(KnifePart.CFrame,CFrame.new(EPos)*CFrame.Angles(0,Num*1.8,0)*CFrame.new(3.5,math.sin(Num*3.1),0)*CFrame.fromEulerAnglesXYZ(Num,Num,Num),.17)
  1302.                 end
  1303.             end)
  1304.         end)
  1305.        
  1306.         Mouse.KeyDown:connect(function(key)
  1307.             if key == "x" then
  1308.                local obj = Mouse.Target
  1309.                obj:Destroy()
  1310.             end
  1311.         end)
  1312.        
  1313.         Mouse.Button1Down:connect(function()
  1314.             if Mouse.Target ~= nil and Mouse.Hit ~= nil then
  1315.             spawn(function()
  1316.                 local Dist = ((EarthPart.Position-Mouse.Hit.p).magnitude)
  1317.                 local Bullet = Create'Part'{BrickColor=BrickColor.new('New Yeller'),Parent=GunPart,Name='Bullet',Anchored=true,CanCollide=true,Locked=true,FormFactor='Custom'}
  1318.                 Bullet.Size=Vector3.new(.2,Dist,.2)
  1319.                 Bullet.CFrame = CFrame.new(GunPart.Position,Mouse.Hit.p)
  1320.                 * CFrame.new(0,0,-Dist/2.3)
  1321.                 * CFrame.Angles(math.pi/2,0,0)
  1322.                 pcall(function()
  1323.                 local obj = Mouse.Target
  1324.                 if obj.ClassName == 'Part' and obj ~= Bullet then
  1325.                     if obj.Name == 'Head' then
  1326.                         local HeadSound = Instance.new("Sound",obj) HeadSound.Pitch = 1 HeadSound.Volume = 1 HeadSound.Looped = false HeadSound.SoundId = "rbxassetid://131313234"
  1327.                         HeadSound:Play()
  1328.                         if obj.Parent:FindFirstChild('Humanoid',true) then
  1329.                             for _,charobj in ipairs(obj.Parent:GetChildren()) do
  1330.                                 if charobj.ClassName == 'Part' then
  1331.                                     charobj.BrickColor = BrickColor.Black()
  1332.                                 end
  1333.                                 pcall(function() charobj:MakeJoints() end)
  1334.                                 if charobj.ClassName == 'BodyColors' then
  1335.                                     charobj.HeadColor = BrickColor.Black()
  1336.                                     charobj.LeftArmColor = BrickColor.Black()
  1337.                                     charobj.LeftLegColor = BrickColor.Black()
  1338.                                     charobj.RightArmColor = BrickColor.Black()
  1339.                                     charobj.RightLegColor = BrickColor.Black()
  1340.                                     charobj.TorsoColor = BrickColor.Black()
  1341.                                 end
  1342.                             end
  1343.                             obj.Parent.Humanoid.Health = 0
  1344.                         end
  1345.                         if obj.Parent:FindFirstChild('Humanoid',true) then
  1346.                             obj.Died:connect(function()
  1347.                                 local HeadSound = Instance.new("Sound",obj) HeadSound.Pitch = 1 HeadSound.Volume = 1 HeadSound.Looped = false HeadSound.SoundId = "rbxassetid://131979189"
  1348.                                 HeadSound:Play()
  1349.                             end)
  1350.                         end
  1351.                     else
  1352.                         if obj.Parent:FindFirstChild('Humanoid',true) then
  1353.                          obj.Parent.Humanoid.Health = obj.Parent.Humanoid.Health - 15
  1354.                         end
  1355.                         if obj.Parent:FindFirstChild('Humanoid',true) then
  1356.                             obj.Died:connect(function()
  1357.                                 local HeadSound = Instance.new("Sound",obj) HeadSound.Pitch = 1 HeadSound.Volume = 1 HeadSound.Looped = false HeadSound.SoundId = "rbxassetid://131979189"
  1358.                                 HeadSound:Play()
  1359.                             end)
  1360.                         end
  1361.                     end
  1362.                 elseif obj.ClassName == 'Hat' and obj ~= Bullet then
  1363.                     obj:remove()
  1364.                 end
  1365.                 end)
  1366.                 local GunSound = Instance.new("Sound",workspace) GunSound.Pitch = 1 GunSound.Volume = .6 GunSound.Looped = false GunSound.SoundId = "rbxassetid://132456235"
  1367.                 GunSound:Play()
  1368.                 for i = 0,1,.1 do
  1369.                     Bullet.Size = Bullet.Size + Vector3.new(.05,.05,.05)
  1370.                     Bullet.Transparency = Bullet.Transparency + .1
  1371.                     Services.run.RenderStepped:wait()
  1372.                 end
  1373.                 Bullet:remove()
  1374.                 delay(8,function()
  1375.                     GunSound:Destroy()
  1376.                 end)
  1377.             end)
  1378.             end
  1379.         end)
  1380.        
  1381.         Player.Character = nil;
  1382.         wait();
  1383.         Player.Parent=nil;
  1384.         NewChat('MLGProbe; Created by 12GaugeNick')
  1385.     ]]};
  1386. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement