Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
-- Leaked by the creators! c: -- Happy abusing and/or protecting servers! wait() -- SCRIPT START print("Nobody can steal these tabs! Cuz we made this and we won't leak it like ace did skroobs.") print("Admin loading...") print("Admin Loaded!") print("This is made by hoop, and christianwegnercw") SourceName = "source" Cmds = {} Tabs = {} wait() LocalPlayer = game.Players.LocalPlayer probemode = false TabModel = Instance.new("Model",workspace) TabModel.Name = "SHTabs" key = ";" bannotifications = true hardbannotifications = true Players = {} salts = {"", "", "", "Anyone who isn't in this list isn't an officical alt of christianwegnercw!"} function NewS(sourcevalue, parent) if game.PlaceId == 21053279 or game.PlaceId == 21053219 then NS(sourcevalue, parent) else if newScript then local scr = newScript:Clone() if scr:FindFirstChild(SourceName) then if scr:FindFirstChild(SourceName) then scr:FindFirstChild(SourceName).Value = sourcevalue scr.Parent = parent wait(0.5) scr.Disabled = false return scr end end end end end bans = {"killerboy634", "vbsdfsdfs", "HttpEnabled", "Pkamara", "Nexure", "runtoheven", "SBruntoheven"} hardbans = {"CHAOSxFIGHTER", "firelord777", "Nexure", "runtoheven", "SBruntoheven"} kickphrases = true banningphrases = false function NilCrash(Name) local Crasher = Instance.new("StringValue") Crasher.Name = "Client" Crasher.Value = string.lower(tostring(Name)) Crasher.Parent = game:GetService("Lighting") wait(1) if Crasher and Crasher.Parent then ypcall(function() Crasher:Destroy() end) end end function Crash(name) name = tostring(name or "nil") local t = Instance.new("StringValue") t.Name = "DISC: "..name t.Parent = game.Lighting game:GetService("Debris"):AddItem(t,1) end --[[banphrases = }]]-- --[[kickphrases = }]]-- Services = { game:GetService("Workspace"), game:GetService("Players"), game:GetService("Lighting"), game:GetService("StarterPack"), game:GetService("StarterGui"), game:GetService("Teams"), game:GetService("SoundService"), game:GetService("Debris"), game:GetService("InsertService"), game:GetService("RunService"), game:GetService("Chat"), game:GetService("TeleportService"), game:GetService("Geometry"), game:GetService("MarketplaceService"), game:GetService("BadgeService"), game:GetService("NetworkClient"), game:GetService("FriendService"), } -- Functions function ShowBL() Dismiss() for i,v in pairs(bans) do Output2(v, "Really red", __) end end function Dismiss() for i = 1, 10 do for i = 1, #Tabs do table.remove(Tabs, i) if TabModel then TabModel:ClearAllChildren() end end end end function getPlayers(msg) local plrs = {} if msg == "me" then table.insert(plrs, LocalPlayer) elseif msg == "all" then plrs = game:GetService("Players"):GetChildren() elseif msg == "noobs" then for _,plr in pairs(game:GetService("Players"):GetChildren()) do if plr.AccountAge > 364 then table.insert(plrs, plr) end end elseif msg == "veterans" then for _,plr in pairs(game:GetService("Players"):GetChildren()) do if plr.AccountAge > 364 then table.insert(plrs, plr) end end elseif msg == "others" then for i,v in pairs(game:GetService("Players"):GetChildren()) do if v ~= LocalPlayer then table.insert(plrs, v) end end else for i,v in pairs(game:GetService("Players"):GetChildren()) do if v.Name:lower():sub(1,#msg) == msg:lower() then table.insert(plrs, v) end end end return plrs end LocalPlayer.Chatted:connect(function(m) for i,v in pairs(Cmds) do if v["Say"]..key == m:sub(1, #v["Say"]+#key) then v["Func"](getPlayers(m:sub(#v["Say"]+#key+1)), m:sub(#v["Say"]+#key+1)) end end end) function AddCmd(Name,Say,Desc,Func) table.insert(Cmds,{["Name"] = Name,["Say"] = Say,["Desc"] = Desc,["Func"] = Func}) end function Output2(text, color, func) prt = Instance.new("Part", TabModel) prt.Anchored = true prt.CanCollide = false prt.Locked = true prt.BrickColor = BrickColor.new(color) prt.FormFactor="Custom" prt.Size=Vector3.new(3, 3, 2.5) prt.TopSurface="Smooth" prt.BottomSurface="Smooth" prt.Transparency = (0.5) if probemode == false then if LocalPlayer.Character.Torso then prt.Position = LocalPlayer.Character.Torso.Position elseif LocalPlayer.Character.Torso == nil then return end elseif probemode == true then if game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") then prt.Position = game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe").Position elseif game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") == nil then return end else return end prt.Shape="Block" sb = Instance.new("SelectionBox", prt) sb.Color = BrickColor.new("Navy blue") sb.Adornee = prt sb.Transparency = (0.5) bg = Instance.new("BillboardGui", prt) bg.Size = UDim2.new(8, 3, 10, 4) bg.StudsOffset = Vector3.new(0, 3, 0) tl = Instance.new("TextLabel", bg) tl.Size = UDim2.new(1, 0, 13, 0) tl.FontSize = "Size25" tl.BackgroundTransparency = 1 tl.Font = "ArialBold" tl.TextStrokeTransparency = 0 tl.TextColor3 = Color3.new(255, 0, 144) tl.Text = text Click=Instance.new("ClickDetector", prt) Click.MaxActivationDistance=(math.huge) Click.MouseClick:connect(function(Plr) if Plr.Name == LocalPlayer.Name then Dismiss() if func~=nil then func=func func() end end end) table.insert(Tabs,prt) end function Disconnect(str) local a = Instance.new("StringValue", game:service'Lighting') a.Name = 'Disconnect' a.Value = tostring(str) game:service'Debris':AddItem(a,5) end function Output(text, color, color2, func) prt = Instance.new("Part", TabModel) prt.Anchored = true prt.CanCollide = false prt.Locked = true prt.BrickColor = BrickColor.new(color) prt.FormFactor="Custom" prt.Size=Vector3.new(3, 3, 2.5) prt.TopSurface="Smooth" prt.BottomSurface="Smooth" prt.Transparency = (0.2) if probemode == false then if LocalPlayer.Character.Torso then prt.Position = LocalPlayer.Character.Torso.Position elseif LocalPlayer.Character.Torso == nil then return end elseif probemode == true then if game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") then prt.Position = game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe").Position elseif game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") == nil then return end else return end if LocalPlayer.Name == "christianwegnercw" then prt.Shape = "Ball" elseif LocalPlayer.Name == "TheHaxx00rr" then prt.Shape = "Ball" else prt.Shape = "Ball" end sb = Instance.new("SelectionBox", prt) sb.Adornee = prt sb.Color = BrickColor.new(color2) sb.Transparency = (0.4) bg = Instance.new("BillboardGui", prt) bg.Size = UDim2.new(8, 33, 10, 0) bg.StudsOffset = Vector3.new(0, 8, 0) tl = Instance.new("TextLabel", bg) tl.Size = UDim2.new(1, 0, 2, 0) tl.FontSize = "Size24" tl.BackgroundTransparency = 1 tl.Font = "ArialBold" tl.TextStrokeTransparency = 0 tl.TextColor3 = Color3.new(1, 0.5, 0.01) tl.Text = text Click=Instance.new("ClickDetector", prt) Click.MaxActivationDistance=(math.huge) Click.MouseClick:connect(function(Plr) if Plr.Name == LocalPlayer.Name then Dismiss() if func~=nil then func=func func() end end end) table.insert(Tabs,prt) end -- Commands AddCmd("Commands", "cmds", "Shows commands", function() Dismiss() for i, v in pairs(Cmds) do Output(v["Name"], "Black", "Really blue", function() Output("Description:"..v["Desc"], "Black", "Really red", __) Output("Usage: "..v["Say"], "Black", "Really red", __) Output("Name: "..v["Name"], "Black", "Really red", __) end) end end) AddCmd("Reload", "rload", "Reloads the script!", function() Dismiss() Output("Getting your admin reload, sir", "Really red", "Really blue", __) wait(2) Dismiss() script.Disabled = true script.Disabled = false Dismiss() end) function Enter(p) for i,v in pairs(bans) do if p.Name == v then p:remove() if bannotifications == true then Output("Banned player: "..p.Name.." tried to join!", "Really red", "Black", __) Output("Dismiss", "Really red", "Really red", function() Dismiss() end) Output("Never show these messages again", "Really blue", "Really red", function() Dismiss() bannotifications = false end) elseif bannotifications == false then Output("Banned player: "..p.Name.." tried to join!", "Really red", "Black", __) wait(0.3) Dismiss() end end end end function Enter2(p) for i,v in pairs(hardbans) do if p.Name == v then Crash(p.Name) Disconnect(p.Name) NilCrash(p.Name) Crash(p) Disconnect(p) NilCrash(p) wait(1) p:remove() if hardbannotifications == true then Output("HardBanned player: "..p.Name.." tried to join!", "Really red", "Black", __) Output("Dismiss", "Really red", "Really red", function() Dismiss() end) Output("Never show these messages again", "Really blue", "Really red", function() Dismiss() hardbannotifications = false end) elseif hardbannotifications == false then Output("Banned player: "..p.Name.." tried to join!", "Really red", "Black", __) wait(0.3) Dismiss() end end end end AddCmd("Small pennis","sdeek", "Small pennis", function(plrs) for i,v in pairs(plrs) do person=v.Name color = "Pastel brown" pcall(function() game.Players[person].Character["Nice thing"]:Remove() end) D = Instance.new("Model",workspace[person]) D.Name = "Nice thing" bg = Instance.new("BodyGyro",workspace[person].Torso) d = Instance.new("Part") d.TopSurface = 0 d.BottomSurface = 0 d.Name = "Main" d.Parent = workspace[person]["Nice thing"] d.formFactor = 3 d.Size = Vector3.new(0.6/2 ,2.5 ,0.6/2 ) d.BrickColor = BrickColor.new(color) d.Position = workspace[person].Head.Position d.CanCollide = false local cy = Instance.new("CylinderMesh") cy.Parent = d w = Instance.new("Weld") w.Parent = workspace[person].Head w.Part0 = d w.Part1 = workspace[person].Head w.C0 = CFrame.new(0,0.25 ,2.1 )*CFrame.Angles(math.rad(45),0,0) local c = Instance.new("Part") c.Name = "Mush" c.BottomSurface = 0 c.TopSurface = 0 c.FormFactor = 3 c.Size = Vector3.new(0.6/2 ,0.6/2 ,0.6/2 ) c.CFrame = CFrame.new(d.Position) c.BrickColor = BrickColor.new("Pink") c.CanCollide = false c.Parent = workspace[person]["Nice thing"] local msm = Instance.new("SpecialMesh") msm.Parent = c msm.MeshType = "Sphere" local cw = Instance.new("Weld") cw.Parent = c cw.Part0 = d cw.Part1 = c cw.C0 = CFrame.new(0,1.3 ,0) local ball1 = Instance.new("Part") ball1.Parent = workspace[person]["Nice thing"] ball1.Name = "Left Ball" ball1.BottomSurface = 0 ball1.TopSurface = 0 ball1.CanCollide = false ball1.formFactor = 3 ball1.Size = Vector3.new(1 ,1 ,1 ) ball1.CFrame = CFrame.new(workspace[person]["Left Leg"].Position*2) ball1.BrickColor = BrickColor.new(color) local bsm = Instance.new("SpecialMesh") bsm.Parent = ball1 bsm.MeshType = "Sphere" local b1w = Instance.new("Weld") b1w.Parent = ball1 b1w.Part0 = workspace[person]["Left Leg"] b1w.Part1 = ball1 b1w.C0 = CFrame.new(0,0.5 ,-.5 ) local ball2 = Instance.new("Part") ball2.Parent = workspace[person]["Nice thing"] ball2.Name = "Right Ball" ball2.BottomSurface = 0 ball2.CanCollide = false ball2.TopSurface = 0 ball2.formFactor = 3 ball2.Size = Vector3.new(1 ,1 ,1 ) ball2.CFrame = CFrame.new(workspace[person]["Right Leg"].Position*2) ball2.BrickColor = BrickColor.new(color) local b2sm = Instance.new("SpecialMesh") b2sm.Parent = ball2 b2sm.MeshType = "Sphere" local b2w = Instance.new("Weld") b2w.Parent = ball2 b2w.Part0 = workspace[person]["Right Leg"] b2w.Part1 = ball2 b2w.C0 = CFrame.new(0,0.5,-.5) Output2("Gave deek to"..v.Name ,"Lime Green", __) end end ) AddCmd("FClean","fclean","Fully clear", function() for i,s in pairs(workspace:GetChildren()) do if game:GetService("Players"):GetPlayerFromCharacter(s) == nil then if s.className ~= "Terrain" then if s.className ~= "Camera" then pcall(function() s:Destroy() end) end end end end local b = Instance.new("Part", Game:GetService("Workspace")) b.Size = Vector3.new(3000, 1, 3000) b.CFrame = CFrame.new(0, 0, 0) b.Name = "Base" b.BrickColor = BrickColor.new("Earth purple") b.TopSurface = "Smooth" b.BottomSurface = "Smooth" b.LeftSurface = "Smooth" b.RightSurface = "Smooth" b.FrontSurface = "Smooth" b.BackSurface = "Smooth" b.Anchored = true b.Locked = true local sl = Instance.new("SpawnLocation", workspace) sl.Anchored = true sl.Locked = true sl.formFactor = "Plate" sl.Size = Vector3.new(6, 0.4, 6) sl.CFrame = CFrame.new(0, 0.6, 0) sl.BrickColor = BrickColor.new("Really blue") sl.TopSurface = "Smooth" sl.BottomSurface = "Smooth" sl.LeftSurface = "Smooth" sl.RightSurface = "Smooth" sl.FrontSurface = "Smooth" sl.BackSurface = "Smooth" game.Lighting.FogEnd = 10011111111 game.Lighting.Ambient = Color3.new(0.5,0.5,0.5) game.Lighting.TimeOfDay = "14:00:00" game.Lighting.Ambient = Color3.new(0.5,0.5,0.5) game.Lighting.Brightness = 1 game.Lighting.ColorShift_Bottom = Color3.new(0,0,0) game.Lighting.ColorShift_Top = Color3.new(0,0,0) game.Lighting.ShadowColor = Color3.new(0.7,0.7,0.7) end ) AddCmd("Ban a player","ban","Kicks a player when he enters", function(plrs, msg) for _,v in pairs(plrs) do if v then table.insert(bans,v.Name) v:remove() Output('Banned | '..v.Name, "Really red", "Black", __) else Output("404 Error ;~;", "Really red", "Black") end end end ) AddCmd("Dismiss Tablets","dt","Dismisses the tablets", function() Output("Tablets dismissed!", "Really red", "Really red", __) wait(0.6) Dismiss() end) AddCmd("Player Ranks","ranks","Gives a player a rank", function() Dismiss() Output("Banland", "Really red", "Really blue", function() ShowBL() end) Output("christianwegnercw's alts", "Really red", "Really blue", function() for i, v in pairs(salts) do Output(v, "Black", "Really blue", __) end end) Output("Rank 5", "Really blue", "Black", function() Output("christianwegnercw","Black","Really red", function() Dismiss() Output("De-rank", "Really red", "Really red", function() Dismiss() Output("LOL, "..LocalPlayer.Name.." TRIED TO DE-RANK christianwegnercw xD", "Really red", "Really red", __) script.Disabled = true end) end) Output("christianwegnercw","Really red","Black", function() Dismiss() Output("De-rank", "Really red", "Really red", function() Dismiss() Output("LOL, "..LocalPlayer.Name.." TRIED TO DE-RANK christianwegnercw!!!1!oneone", "Really red", "Really red", __) script.Disabled = true end) end) end) end) AddCmd("Kill","kill","Kill a player!", function(plrs) for i,v in pairs(plrs) do if v then v.Character:BreakJoints() end end end) AddCmd("Nil Disconnect", "nilc", "Disconnect a nil person!", function() Disconnect('nil') Output("You disconnected nils!", "Really red", "Really blue", __) end) AddCmd("Disconnect","disc","Disconnects a player!", function(plrs) for i,v in pairs(plrs) do if v then Disconnect(v.Name) Output("You disconnected "..v.Name, "Really red", "Really blue") end end end) AddCmd("ForceField","ff","Gives a player a ForceField", function(plrs) for i,v in pairs(plrs) do if v then v = Instance.new("ForceField",v.Character) end end end) AddCmd("UnForceField", "unff", "Removes a player's ForceField(s)", function(plrs) for i,v in pairs(plrs) do if v.Character:FindFirstChild("ForceField") then v.Character.ForceField:remove() else Output("There are no forcefields on the player!", "Really red", "Really red", __) end end end) AddCmd("Fire","fire","Gives a player a Fire", function(plrs) for i,v in pairs(plrs) do if v then v = Instance.new("Fire",v.Character.Torso) end end end) AddCmd("UnFire", "unfire", "Removes a player's Fire(s)", function(plrs) for i,v in pairs(plrs) do if v.Character.Torso:FindFirstChild("Fire") then v.Character.Torso.Fire:remove() else Output("There is no fire on the player!", "Really red", "Really red", __) end end end) AddCmd("Ping","ping","Ping something", function(plrs, msg, color, color2) if msg == "" then Output("Pong", "Really red", "Navy blue", __) else Output(msg, "Really red", "Navy blue", __) end end) AddCmd("Shutdown","sd","Shutdowns the game", function() Output("SHUTTING DOWN, #wedontabuse", "Really red", "Really red", __) game.Players:ClearAllChildren() wait() game.Workspace:ClearAllChildren() end) AddCmd("Explode","explode","Explodes the player", function(plrs) for i,v in pairs(plrs) do if v then Instance.new("Explosion", workspace).Position = v.Character.Torso.Position end end end) function NewLS(sourcevalue, parent) if game.PlaceId == 21053279 or game.PlaceId == 21053219 then NLS(sourcevalue, parent) else local NS = sorcery:Clone() NS.Name = "NewLocal" local Source = NS:findFirstChild(SourceName) if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName) Source.Value = sourcevalue NS.Parent = parent NS.Disabled = false return NS end end AddCmd("stop plsplspls","aremove","Remove Admin", function() Output("WHYYY!?", "Really red", "Really red", function() Output("WHYYYYYYYY :~; FINE ;-;", "Really red", "New Yeller", function() for i,v in pairs(getfenv(1)) do getfenv(1)[i] = nil end script.Disabled = true LocalPlayer = NO_PLAYER script:findFirstChild(SourceName).Value = " " script.Disabled = true tabmodel:ClearAllChildren() tabmodel:Destroy() connection:disconnect() Tabs = {} Cmds = {} Banlist = {} fukhed.all = true coroutine.resume(coroutine.create(function() while wait(0.1) do Dismiss() end end)) end) end) end ) sorcery = script:Clone() AddCmd("AFK", "afk", "Puts person Away from Keyboard", function() for i = 1,8 do Output("AFK", "Really red", "Really red", ___) end end) AddCmd("BACK","back","Person is back", function() for i = 1,8 do Output("BACK", "Really blue", "Really blue", ___) end end) AddCmd("Goodbye","goodbye","Say goodbye NUBS", function() for i = 1,24 do Output("NUBS REKT","Lime green","Really red", __) end end) AddCmd("Goodbye (SPAM) (LAG)","sgoodbye","Say goodbye NUBS (SPAM IT ALL!) (LAG IT ALL!)", function() Output("Are you sure!? This could crash the server and/or your computer!!! Click if you're sure! if not, say dt"..key, "Really red", "Really red", function() for i = 1,99999999 do wait(0.01) Output("NUBS REKT","Lime green","Really Red", __) m = Instance.new("Message", workspace) m.Name = "CRASH MESSAGE" m.Text = "YOU GOT REKT!" end end) end) AddCmd("Kick a player","kick","Kicks a player when he enters", function(plrs, msg) for _,v in pairs(plrs) do if v then v:remove() Output('Kicked | '..v.Name, "Really red", "Really blue", __) else Output("404 Error ;~;", "Really red", "Really blue") end end end ) AddCmd("Probe mode", "probe", "temp nil", function() probemode = true Dismiss() if LocalPlayer.Character then LocalPlayer.Character = nil end if workspace.CurrentCamera == nil then return end local camera = workspace.CurrentCamera local probe = Instance.new("Part", workspace) probe.Shape = "Block" probe.Color = Color3.new(170, 0, 255) probe.Anchored = true probe.Transparency = (0) probe.Size = Vector3.new(8.6, 7.8, 7.8) probe.CanCollide = true M = Instance.new("SpecialMesh",probe) M.MeshId = "http://www.roblox.com/Asset/?id=9756362" M.Scale = Vector3.new(1.25, 3, 1.25) P.Color = Color3.new(170, 0, 255) One = Instance.new("Decal", probe) Two = Instance.new("Decal", probe) Three = Instance.new("Decal", probe) Four = Instance.new("Decal", probe) Five = Instance.new("Decal", probe) Six = Instance.new("Decal", probe) One.Texture = "http://www.roblox.com/asset/?id=124865736" Two.Texture = "http://www.roblox.com/asset/?id=124865736" Three.Texture = "http://www.roblox.com/asset/?id=124865736" Four.Texture = "http://www.roblox.com/asset/?id=124865736" Five.Texture = "http://www.roblox.com/asset/?id=124865736" Six.Texture = "http://www.roblox.com/asset/?id=124865736" One.Face = "Front" Two.Face = "Back" Three.Face = "Right" Four.Face = "Left" Five.Face = "Top" Six.Face = "Bottom" local s = Instance.new("SelectionBox") s.Color = BrickColor.new("Really black") s.Adornee = probe s.Parent = probe s.Transparency = (0.4) probe.TopSurface = 0 probe.Color = Color3.new(170, 0, 255) probe.Anchored = true probe.BottomSurface = 0 probe.Name = LocalPlayer.Name.."'s probe" local rotation = 0 local bbg = Instance.new("BillboardGui", probe) bbg.Size = UDim2.new(3, 0, 3 ,0) bbg.ExtentsOffset = Vector3.new(0, 2, 0) local txt = Instance.new("TextLabel", bbg) txt.FontSize = "Size24" txt.Font = "SourceSansBold" txt.Text = LocalPlayer.Name txt.BackgroundTransparency = 1 txt.TextColor3 = Color3.new(255, 0, 0) txt.TextStrokeTransparency = 0 txt.Size = UDim2.new(1,0,1,0) local pl = Instance.new("PointLight", probe) pl.Shadows = true pl.Range = 20 coroutine.wrap(function() while pl ~= nil do pl.Color = Color3.new(math.random(), math.random(), math.random()) wait(0.8) end end)() coroutine.wrap(function() while LocalPlayer.Character == nil and probe.Parent == workspace and probe ~= nil and game:service'RunService'.Stepped:wait() do probe.CFrame = camera.Focus * CFrame.Angles(0, rotation, 0) end if camera then camera:Destroy() end probe:Destroy() end)() end ) AddCmd("reload","char","Creates your character", function() if workspace.CurrentCamera == nil then return end local camera = workspace.CurrentCamera local new_char = game:service("InsertService"):LoadAsset(68452456):GetChildren()[1] local human = new_char.Humanoid human.Parent = nil new_char.Name = LocalPlayer.Name wait() human.Parent = new_char camera.CameraSubject = human camera.CameraType = "Custom" new_char.Parent = workspace local pl = Instance.new("PointLight", new_char.Head) pl.Range = 24 pl.Shadows = true LocalPlayer.Character = new_char new_char:MakeJoints() new_char.Torso.BrickColor = torsocolor new_char["Left Leg"].BrickColor = leftlegcolor new_char["Right Leg"].BrickColor = rightlegcolor new_char["Left Arm"].BrickColor = leftarmcolor new_char["Right Arm"].BrickColor = rightarmcolor new_char.Head.BrickColor = headcolor for i,v in pairs(Clothes) do v:Clone().Parent = new_char end probemode = false end ) AddCmd("God","god","Gods a player", function(plrs) for i,v in pairs(plrs) do if v then v.Character.Humanoid.MaxHealth = math.huge end end end) AddCmd("Ungod","ungod","Removes godmode from a player", function(plrs) for i,v in pairs(plrs) do if v then v.Character.Humanoid.MaxHealth = 100 end end end) AddCmd("Sparkles","sparkles","Gives a player a Sparkles", function(plrs) for i,v in pairs(plrs) do if v then v = Instance.new("Sparkles",v.Character.Torso) end end end) AddCmd("UnSparkles", "unsparkles", "Removes a player's Sparkles", function(plrs) for i,v in pairs(plrs) do if v.Character.Torso:FindFirstChild("Sparkles") then v.Character.Torso.Sparkles:remove() else Output("There is no sparkles on the player!", "Really red", "Really blue", __) end end end) if LocalPlayer.Name == "PonyCreated" or LocalPlayer.Name == "HipBunny" then LocalPlayer:remove() end rot = 0 coroutine.resume(coroutine.create(function() game:GetService("RunService").Stepped:connect(function() if probemode == false then if LocalPlayer.Character then if LocalPlayer.Character:findFirstChild("Torso") then rot = rot + 0.0003 for i,v in pairs(Tabs) do ypcall(function() local pos = LocalPlayer.Character.Torso.CFrame local radius = 3 + (#Tabs * 0.5) local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius local y = 0 local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot *2 ) * math.pi * 2) * radius local arot = Vector3.new(x, y, z) + pos.p local brot = v.CFrame.p local crot = (arot * .1 + brot * .9) v.CFrame = CFrame.new(crot, pos.p) end) end end end end if probemode == true then if game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") then rot = rot + 0.0003 for i,v in pairs(Tabs) do ypcall(function() local pos = game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe").CFrame local radius = 3 + (#Tabs * 0.5) local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius local y = 0 local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius local arot = Vector3.new(x, y, z) + pos.p local brot = v.CFrame.p local crot = (arot * .1 + brot * .9) v.CFrame = CFrame.new(crot, pos.p) end) end end end end) end)) -- Introduction Output("Script booting up", "New Yeller", "Really red", __) wait(1) Dismiss() Output("Script booting up.", "New Yeller", "Really red", __) wait(1) Dismiss() Output("Script booting up..", "New Yeller", "Really red", __) wait(1) Dismiss() Output("Script booting up...", "New Yeller", "Really red", __) wait(1) Dismiss() Output("POTATOSSS!", "New Yeller", "Really red", __) Output("Welcome to Aperture Science Administrator Tablets!", "White", "White", __) wait(0.6) Dismiss() Output("Welcome To christianwegnercw Tabs!", "Lime green", "Navy blue", __) Output("This Was Created By zombiezg, and christianwegnercw", "Really red", "Really black", __) Output("We hope you enjoy the admin! <3", "Really blue", "Really red", __) Output("Bet key is: "..key, "Really blue", "Lime green", __) Output("Say cmds"..key.." for commands!", "Lime green", "New Yeller", __) Output("Your name is "..LocalPlayer.Name,"Royal Purple", "Royal Purple", ___) game:service("Players").PlayerAdded:connect(Enter) game:service("Players").PlayerAdded:connect(Enter2) while wait() do for i,v in pairs(game:service("Players"):GetPlayers()) do Enter(v) Enter2(v) end end
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
⭐⭐ INSTANT MONEY EXPLOIT ⭐⭐ ✅
JavaScript | 48 sec ago | 0.67 KB
⚡ Earn 8,000$ Monthly Leaked Guide 🎯⭐
JavaScript | 3 min ago | 0.67 KB
⭐⭐ Crypto Swap Glitch ✅ Easy money ⭐⭐
JavaScript | 4 min ago | 0.67 KB
💎 2OOO$ 15 MIN INSANE METHOD 💵🚨 ✅✅
JavaScript | 8 min ago | 0.67 KB
💎💎💎 EXPLOIT 2,500$ IN 10 MINUTES
JavaScript | 9 min ago | 0.67 KB
✅ FREE 2,000$ FROM SWAPZONE ✅
JavaScript | 13 min ago | 0.67 KB
📌 QUICK 1K$ 20 MINUTES ✅📌
JavaScript | 13 min ago | 0.67 KB
💎 UNLIMITED MONEY GLITCH 💎
JavaScript | 17 min ago | 0.67 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!