Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --// GUI Setup
- local player = game.Players.LocalPlayer
- local starterGui = player:WaitForChild("PlayerGui")
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "SS SK1PPERS"
- screenGui.ResetOnSpawn = false -- Prevents deletion on death
- screenGui.Parent = starterGui
- local frame = Instance.new("Frame", screenGui)
- frame.Size = UDim2.new(0, 250, 1, 330)
- frame.Position = UDim2.new(0.05, 0, 0.3, 0)
- frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- frame.BorderSizePixel = 0
- frame.Active = true
- frame.Draggable = true -- Makes it draggable
- --// Close/Open Button
- local toggleBtn = Instance.new("TextButton", screenGui)
- toggleBtn.Size = UDim2.new(0, 100, 0, 30)
- toggleBtn.Position = UDim2.new(0.05, 0, 0.22, 0)
- toggleBtn.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- toggleBtn.TextColor3 = Color3.new(1, 1, 1)
- toggleBtn.Text = "Close Tab"
- local guiVisible = true
- toggleBtn.MouseButton1Click:Connect(function()
- guiVisible = not guiVisible
- frame.Visible = guiVisible
- toggleBtn.Text = guiVisible and "Close Tab" or "Open Tab"
- end)
- --// Smooth Color Change
- local tweenService = game:GetService("TweenService")
- task.spawn(function()
- local colors = {
- Color3.fromRGB(0, 255, 0),
- Color3.fromRGB(0, 150, 255),
- Color3.fromRGB(255, 105, 180),
- }
- local i = 1
- while true do
- local tween = tweenService:Create(frame, TweenInfo.new(2, Enum.EasingStyle.Linear), { BackgroundColor3 = colors[i] })
- tween:Play()
- tween.Completed:Wait()
- i = i % #colors + 1
- end
- end)
- --// Notifications
- game.StarterGui:SetCore("SendNotification", {
- Title = "Notice";
- Text = "TIME TO SKID THIS BITCH";
- Duration = 5;
- })
- task.wait(1)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Credit";
- Text = "Created by 7S_Vantus and Skidrider7S";
- Duration = 5;
- })
- --// Auto Button Position Tracker
- local currentY = 10
- local function makeButton(text)
- local btn = Instance.new("TextButton", frame)
- btn.Size = UDim2.new(1, -20, 0, 50)
- btn.Position = UDim2.new(0, 10, 0, currentY)
- btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- btn.TextColor3 = Color3.new(1, 1, 1)
- btn.Text = text
- currentY = currentY + 60
- return btn
- end
- --// Create Buttons
- local toggleButton = makeButton("Loop Explode All")
- local gauntletButton = makeButton("Thanos Gauntlet")
- local banHammerButton = makeButton("Ban Hammer")
- local blazeKillButton = makeButton("Blaze Kill")
- local lagServerButton = makeButton("Lag Server (Toggle)")
- local fakePermButton = makeButton("Fake Perm")
- local zaWarudoBtn = makeButton("Za Warudo")
- local blindToggle = makeButton("Cmd Blind All")
- local blurCrazyBtn = makeButton("Loop Blur Crazy")
- local billboardBtn = makeButton("Billboard All")
- --// Target TextBox
- local targetBox = Instance.new("TextBox", frame)
- targetBox.Size = UDim2.new(1, -20, 0, 40)
- targetBox.Position = UDim2.new(0, 10, 0, currentY)
- targetBox.PlaceholderText = "Target💥"
- targetBox.Text = ""
- targetBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- targetBox.TextColor3 = Color3.new(1, 1, 1)
- targetBox.ClearTextOnFocus = false
- --// Variables
- local looping = false
- local lagging = false
- local loopConnection = nil
- local lagConnection = nil
- local teleportPosition = Vector3.new(-179, 7, -8)
- --// Loop Explode All
- toggleButton.MouseButton1Click:Connect(function()
- looping = not looping
- toggleButton.BackgroundColor3 = looping and Color3.fromRGB(0, 170, 0) or Color3.fromRGB(50, 50, 50)
- toggleButton.Text = looping and "STOP Explode All" or "Loop Explode All"
- if looping then
- local character = player.Character or player.CharacterAdded:Wait()
- if character and character:FindFirstChild("HumanoidRootPart") then
- character.HumanoidRootPart.CFrame = CFrame.new(teleportPosition)
- end
- loopConnection = task.spawn(function()
- while looping do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";explode all")
- task.wait(0.65)
- end
- end)
- else
- if loopConnection then task.cancel(loopConnection) end
- end
- end)
- --// Tool Hit Handler
- local function handleTool(tool, talkMsg, effectFunc)
- if not tool:IsA("Tool") then return end
- tool.Activated:Connect(function()
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";talk me " .. talkMsg)
- local myChar = player.Character
- if not myChar or not myChar:FindFirstChild("HumanoidRootPart") then return end
- local myPos = myChar.HumanoidRootPart.Position
- local closest, dist = nil, math.huge
- for _, other in pairs(game.Players:GetPlayers()) do
- if other ~= player and other.Character and other.Character:FindFirstChild("HumanoidRootPart") then
- local d = (myPos - other.Character.HumanoidRootPart.Position).Magnitude
- if d < 15 and d < dist then
- closest = other
- dist = d
- end
- end
- end
- if closest then effectFunc(closest) end
- end)
- end
- --// Thanos Gauntlet
- gauntletButton.MouseButton1Click:Connect(function()
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";gear me 243790334")
- local function fling(t) game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";fling " .. t.Name) end
- for _, tool in pairs(player.Backpack:GetChildren()) do
- handleTool(tool, "THAT MY HEDGE😡😡🔪", fling)
- end
- player.Backpack.ChildAdded:Connect(function(tool)
- handleTool(tool, "THAT MY HEDGE😡😡🔪", fling)
- end)
- end)
- --// Ban Hammer
- banHammerButton.MouseButton1Click:Connect(function()
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";gear me 10468797")
- local function punish(t) game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";punish " .. t.Name) end
- for _, tool in pairs(player.Backpack:GetChildren()) do
- handleTool(tool, "This stupid script always making me work😡😡🔪", punish)
- end
- player.Backpack.ChildAdded:Connect(function(tool)
- handleTool(tool, "This stupid script always making me work😡😡🔪", punish)
- end)
- end)
- --// Blaze Kill
- blazeKillButton.MouseButton1Click:Connect(function()
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";gear me 105351545")
- local function blazeKillTarget(t)
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";fire " .. t.Name)
- task.wait(2)
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";kill " .. t.Name)
- end
- local function fireAndKill(t)
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";talk me 🔥🔥💥")
- blazeKillTarget(t)
- end
- for _, tool in pairs(player.Backpack:GetChildren()) do
- handleTool(tool, "EHEHEAHW🫱🫱🔪", fireAndKill)
- end
- player.Backpack.ChildAdded:Connect(function(tool)
- handleTool(tool, "EHEHEAHW🫱🫱🔪", fireAndKill)
- end)
- end)
- --// Lag Server Toggle
- lagServerButton.MouseButton1Click:Connect(function()
- lagging = not lagging
- lagServerButton.BackgroundColor3 = lagging and Color3.fromRGB(255, 0, 0) or Color3.fromRGB(50, 50, 50)
- lagServerButton.Text = lagging and "STOP Lag Server" or "Lag Server (Toggle)"
- if lagging then
- lagConnection = task.spawn(function()
- while lagging do
- for _, cmd in ipairs({ ";loadmap", ";bring all", ";re all" }) do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(cmd)
- task.wait(0.01)
- end
- end
- end)
- else
- if lagConnection then task.cancel(lagConnection) end
- end
- end)
- --// Fake Perm Button
- fakePermButton.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet("https://rawscripts.net/raw/Obby-For-Actual-Owner-Admin!-HeadAdmin-Script-19151"))()
- end)
- --// Za Warudo
- zaWarudoBtn.MouseButton1Click:Connect(function()
- local cmds = {
- ";music 1571597070",
- ";warp all",
- ";disco",
- }
- for _, cmd in ipairs(cmds) do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(cmd)
- end
- task.wait(3)
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";undisco")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";speed me 34")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";freeze all")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";music 0")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";speed all 0")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";talk others 😮?")
- task.wait(3.4)
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";unfreeze all")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";speed all 16")
- end)
- --// Cmd Blind All
- local blindLooping = false
- local blindLoop = nil
- blindToggle.MouseButton1Click:Connect(function()
- blindLooping = not blindLooping
- blindToggle.BackgroundColor3 = blindLooping and Color3.fromRGB(170, 0, 170) or Color3.fromRGB(50, 50, 50)
- blindToggle.Text = blindLooping and "STOP Blind All" or "Cmd Blind All"
- if blindLooping then
- blindLoop = task.spawn(function()
- while blindLooping do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";m .")
- task.wait(0.001)
- end
- end)
- else
- if blindLoop then task.cancel(blindLoop) end
- end
- end)
- --// Loop Blur Crazy
- local blurCrazyLooping = false
- local blurLoop = nil
- blurCrazyBtn.MouseButton1Click:Connect(function()
- blurCrazyLooping = not blurCrazyLooping
- blurCrazyBtn.BackgroundColor3 = blurCrazyLooping and Color3.fromRGB(255, 140, 0) or Color3.fromRGB(50, 50, 50)
- blurCrazyBtn.Text = blurCrazyLooping and "STOP Blur Crazy" or "Loop Blur Crazy"
- if blurCrazyLooping then
- blurLoop = task.spawn(function()
- while blurCrazyLooping do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";blur all")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";kill all")
- task.wait(0.03)
- end
- end)
- else
- if blurLoop then task.cancel(blurLoop) end
- end
- end)
- --// Billboard All
- local billboardLooping = false
- local billboardLoop = nil
- billboardBtn.MouseButton1Click:Connect(function()
- billboardLooping = not billboardLooping
- billboardBtn.BackgroundColor3 = billboardLooping and Color3.fromRGB(0, 255, 255) or Color3.fromRGB(50, 50, 50)
- billboardBtn.Text = billboardLooping and "STOP Billboard" or "Billboard All"
- if billboardLooping then
- billboardLoop = task.spawn(function()
- while billboardLooping do
- local cmds = {
- ";titler all SERVER",
- ";titleo all HACKED",
- ";titley all BY",
- ";titleb all SK1PPERS",
- }
- for _, cmd in ipairs(cmds) do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(cmd)
- task.wait(0.7)
- end
- end
- end)
- else
- if billboardLoop then task.cancel(billboardLoop) end
- end
- end)
- local trollAllBtn = makeButton("troll all", 710)
- local trollAllLooping = false
- local trollLoop = nil
- trollAllBtn.MouseButton1Click:Connect(function()
- trollAllLooping = not trollAllLooping
- trollAllBtn.BackgroundColor3 = trollAllLooping and Color3.fromRGB(255, 85, 0) or Color3.fromRGB(50, 50, 50)
- trollAllBtn.Text = trollAllLooping and "STOP troll all" or "troll all"
- if trollAllLooping then
- trollLoop = task.spawn(function()
- while trollAllLooping do
- local cmds = {
- ";fly all nan",
- ";warp all 9999",
- ";hidegui all",
- ";blur all 999999",
- ";hidguis all"
- }
- for _, cmd in ipairs(cmds) do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(cmd)
- end
- task.wait(0.03)
- end
- end)
- else
- if trollLoop then task.cancel(trollLoop) end
- end
- end)
- --// Load 🍆💦 Club Button
- local loadClubBtn = makeButton("load 🍆💦 club", 610)
- loadClubBtn.MouseButton1Click:Connect(function()
- local cmds = {
- ";re all",
- ";loadmap",
- ";titlep all OH YESS💦🍆🍆🔞",
- ";talk all UYES SEMPAI💦💦💧🥵 KEEP IT COMMING",
- ";talk all I LOVE §ĖX̌"
- }
- for _, cmd in ipairs(cmds) do
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(cmd)
- task.wait(0.7)
- end
- end)
- local banDirectBtn = makeButton("ban direct", 650)
- local banDirectLooping = false
- local banLoop = nil
- banDirectBtn.MouseButton1Click:Connect(function()
- banDirectLooping = not banDirectLooping
- banDirectBtn.BackgroundColor3 = banDirectLooping and Color3.fromRGB(255, 0, 0) or Color3.fromRGB(50, 50, 50)
- banDirectBtn.Text = banDirectLooping and "STOP ban direct" or "ban direct"
- if banDirectLooping then
- banLoop = task.spawn(function()
- while banDirectLooping do
- local targetName = targetBox.Text
- for _, p in ipairs(game.Players:GetPlayers()) do
- if p ~= player and string.lower(p.Name):sub(1, #targetName) == string.lower(targetName) then
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";punish " .. p.Name)
- end
- end
- task.wait(0.05)
- end
- end)
- else
- if banLoop then task.cancel(banLoop) end
- end
- end)
- --// Target TextBox
- local targetBox = Instance.new("TextBox", frame)
- targetBox.Size = UDim2.new(1, -20, 0, 40)
- targetBox.Position = UDim2.new(0, 10, 0, 610)
- targetBox.PlaceholderText = "Target💥"
- targetBox.Text = ""
- targetBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- targetBox.TextColor3 = Color3.new(1, 1, 1)
- --// Direct Loop Explode
- local explodeToggleBtn = makeButton("Direct Loop Explode", 660)
- local explodeLooping = false
- local explodeLoopConn = nil
- explodeToggleBtn.MouseButton1Click:Connect(function()
- explodeLooping = not explodeLooping
- explodeToggleBtn.BackgroundColor3 = explodeLooping and Color3.fromRGB(255, 80, 80) or Color3.fromRGB(50, 50, 50)
- explodeToggleBtn.Text = explodeLooping and "STOP Direct Explode" or "Direct Loop Explode"
- if explodeLooping then
- explodeLoopConn = task.spawn(function()
- while explodeLooping do
- local name = targetBox.Text
- if name ~= "" then
- for _, plr in ipairs(game.Players:GetPlayers()) do
- if plr.Name:lower():sub(1, #name) == name:lower() then
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";explode " .. plr.Name)
- break
- end
- end
- end
- task.wait(0.6)
- end
- end)
- else
- if explodeLoopConn then task.cancel(explodeLoopConn) end
- end
- end)
- --// Give Gauntlet Button
- local giveGauntletBtn = makeButton("Give Gauntlet", 720)
- giveGauntletBtn.MouseButton1Click:Connect(function()
- local name = targetBox.Text
- if name == "" then return end
- for _, plr in ipairs(game.Players:GetPlayers()) do
- if plr.Name:lower():sub(1, #name) == name:lower() then
- local fullName = plr.Name
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";gear " .. fullName .. " 243790334")
- local gauntletListener
- gauntletListener = plr.Backpack.ChildAdded:Connect(function(tool)
- if tool:IsA("Tool") then
- tool.Activated:Connect(function()
- local char = plr.Character
- if char and char:FindFirstChild("HumanoidRootPart") then
- local hitTarget = nil
- local pos = char.HumanoidRootPart.Position
- local closest, dist = nil, math.huge
- for _, other in ipairs(game.Players:GetPlayers()) do
- if other ~= plr and other.Character and other.Character:FindFirstChild("HumanoidRootPart") then
- local d = (pos - other.Character.HumanoidRootPart.Position).Magnitude
- if d < 15 and d < dist then
- closest = other
- dist = d
- end
- end
- end
- if closest then
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";fling " .. closest.Name)
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";talk " .. fullName .. " THATS MY HEDGE😡😡🔪")
- end
- end
- end)
- end
- end)
- break
- end
- end
- end)
- --// Poison Bomb
- local poisonBombButton = makeButton("Poison Bomb")
- poisonBombButton.MouseButton1Click:Connect(function()
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";gear me 29100543")
- local function poisonEffect(target)
- local name = target.Name
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";smoke " .. name)
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";talk " .. name .. " Ouchie!!")
- task.delay(2.4, function()
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";talk " .. name .. " AAAAAAAHHHH")
- game.ReplicatedStorage.HDAdminClient.Signals.RequestCommand:InvokeServer(";kill " .. name)
- end)
- end
- for _, tool in pairs(player.Backpack:GetChildren()) do
- handleTool(tool, "Eat this balloon💣🎈", poisonEffect)
- end
- player.Backpack.ChildAdded:Connect(function(tool)
- handleTool(tool, "Eat this balloon💣🎈", poisonEffect)
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement