Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- a = [[
- game.StarterGui:SetCore("SendNotification", {
- Title = "Abylistc";
- Text = "Welcome to Abylistc. Drake's OWN admin, but only used for Void SB. Prefix is - and say -cmds for a list of commands.";
- Icon = "http://www.roblox.com/asset/?id=1118316158";
- Duration = "10";
- })
- ]]
- NLS(a, owner.PlayerGui)
- local cmds = Instance.new("ScreenGui")
- local cmdlabel = Instance.new("TextLabel", cmds)
- local hint = Instance.new("ScreenGui")
- hint.Name = "AbylistcHint"..owner.Name
- local hintlabel = Instance.new("TextLabel", hint)
- cmdlabel.Text = [[
- All the commands are
- -kill (kills a player)
- -sit (trips a player)
- -re (loads a player)
- -fire (lights a player on fire)
- -smoke (smokes a player)
- -sparkles (sparkles a player)
- -ws (only applies to you)
- -ju (only applies to you)
- -exit (exits the guis you are on (especially this one.))
- -m (creates a message)
- -stop (stops the script)
- ]]
- cmdlabel.Font = "Legacy"
- cmdlabel.TextColor3 = Color3.new(255, 255, 255)
- cmdlabel.Size = UDim2.new(1, 0, 1, 0)
- cmdlabel.Position = UDim2.new(0, 0, 0, 0)
- cmdlabel.TextSize = 25
- cmdlabel.TextWrapped = true
- cmdlabel.BackgroundColor3 = Color3.new(0, 0, 0)
- cmdlabel.BackgroundTransparency = 0.5
- cmdlabel.TextColor3 = Color3.new(255, 255, 255)
- cmdlabel.BorderSizePixel = 0
- hintlabel.Font = "Legacy"
- hintlabel.TextColor3 = Color3.new(255, 255, 255)
- hintlabel.Size = UDim2.new(1, 0, 1, 0)
- hintlabel.Position = UDim2.new(0, 0, 0, 0)
- hintlabel.TextSize = 25
- hintlabel.TextWrapped = true
- hintlabel.BackgroundColor3 = Color3.new(0, 0, 0)
- hintlabel.BackgroundTransparency = 0.5
- hintlabel.TextColor3 = Color3.new(255, 255, 255)
- hintlabel.BorderSizePixel = 0
- owner.Chatted:connect(function(msg)
- if msg == "-cmds" then
- cmds.Parent = owner.PlayerGui
- end
- if msg:sub(1,2) == "-m" then
- for _,v in pairs(owner.Parent:GetChildren()) do
- local C = hint:Clone()
- C.Parent = v.PlayerGui
- C.TextLabel.Text = "{"..owner.Name.."}: "..msg:sub(4)
- end
- wait(3)
- for _,v in pairs(owner.Parent:GetChildren()) do
- if v.PlayerGui:FindFirstChild("AbylistcHint"..owner.Name) then
- v.PlayerGui["AbylistcHint"..owner.Name]:Destroy()
- end
- end
- end
- if msg == "-stop" then
- cmds:Destroy()
- script:Destroy()
- end
- if msg == "-exit" then
- cmds.Parent = nil
- end
- if msg == "-re" then
- owner:LoadCharacter(true)
- end
- if msg:sub(1,3) == "-re" then
- for i,v in pairs(owner.Parent:GetChildren()) do
- if v:IsA("Player") then
- local name = v.Name
- if string.find(name, msg:sub(5)) ~= nil then
- v:LoadCharacter(true)
- end
- if name == msg:sub(5) then
- v:LoadCharacter(true)
- end
- end
- end
- end
- if msg:sub(1,5) == "-kill" then
- for i,v in pairs(owner.Parent:GetChildren()) do
- if v:IsA("Player") then
- local name = v.Name
- if string.find(name, msg:sub(7)) ~= nil then
- v.Character:BreakJoints()
- end
- if name == msg:sub(7) then
- v.Character:BreakJoints()
- end
- end
- end
- end
- if msg:sub(1,4) == "-sit" then
- for i,v in pairs(owner.Parent:GetChildren()) do
- if v:IsA("Player") then
- local name = v.Name
- if string.find(name, msg:sub(6)) ~= nil then
- v.Character:FindFirstChildOfClass("Humanoid").Sit = true
- end
- if name == msg:sub(6) then
- v.Character:FindFirstChildOfClass("Humanoid").Sit = true
- end
- end
- end
- end
- if msg:sub(1,3) == "-ws" then
- owner.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = msg:sub(5)
- end
- if msg:sub(1,3) == "-ju" then
- owner.Character:FindFirstChildOfClass("Humanoid").JumpPower = msg:sub(5)
- end
- if msg:sub(1,9) == "-sparkles" then
- for i,v in pairs(owner.Parent:GetChildren()) do
- if v:IsA("Player") then
- local name = v.Name
- if string.find(name, msg:sub(11)) ~= nil then
- if v.Character:FindFirstChild("Torso") then
- Instance.new("Sparkles",v.Character.Torso)
- end
- if v.Character:FindFirstChild("UpperTorso") then
- Instance.new("Sparkles",v.Character.UpperTorso)
- end
- end
- if name == msg:sub(11) then
- if v.Character:FindFirstChild("Torso") then
- Instance.new("Sparkles",v.Character.Torso)
- end
- if v.Character:FindFirstChild("UpperTorso") then
- Instance.new("Sparkles",v.Character.UpperTorso)
- end
- end
- end
- end
- end
- if msg:sub(1,6) == "-smoke" then
- for i,v in pairs(owner.Parent:GetChildren()) do
- if v:IsA("Player") then
- local name = v.Name
- if string.find(name, msg:sub(8)) ~= nil then
- if v.Character:FindFirstChild("Torso") then
- Instance.new("Smoke",v.Character.Torso)
- end
- if v.Character:FindFirstChild("UpperTorso") then
- Instance.new("Smoke",v.Character.UpperTorso)
- end
- end
- if name == msg:sub(8) then
- if v.Character:FindFirstChild("Torso") then
- Instance.new("Smoke",v.Character.Torso)
- end
- if v.Character:FindFirstChild("UpperTorso") then
- Instance.new("Smoke",v.Character.UpperTorso)
- end
- end
- end
- end
- end
- if msg:sub(1,5) == "-fire" then
- for i,v in pairs(owner.Parent:GetChildren()) do
- if v:IsA("Player") then
- local name = v.Name
- if string.find(name, msg:sub(7)) ~= nil then
- if v.Character:FindFirstChild("Torso") then
- Instance.new("Fire",v.Character.Torso)
- end
- if v.Character:FindFirstChild("UpperTorso") then
- Instance.new("Fire",v.Character.UpperTorso)
- end
- end
- if name == msg:sub(7) then
- if v.Character:FindFirstChild("Torso") then
- Instance.new("Fire",v.Character.Torso)
- end
- if v.Character:FindFirstChild("UpperTorso") then
- Instance.new("Fire",v.Character.UpperTorso)
- end
- end
- end
- end
- end
- end)
Add Comment
Please, Sign In to add comment