-- N1ghtz Admin Spammer V1.3 (With "Fuck Da Frogz" Button) local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Create GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "N1ghtzAdminSpammer" screenGui.Parent = playerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 550) frame.Position = UDim2.new(0.35, 0, 0.35, 0) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 2 frame.Active = true frame.Draggable = true -- PC dragging frame.Parent = screenGui local title = Instance.new("TextLabel") title.Text = "N1ghtz Admin Spammer V1.3" title.Size = UDim2.new(1, 0, 0.2, 0) title.BackgroundTransparency = 1 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.SourceSansBold title.TextSize = 20 title.Parent = frame -- Function to create buttons local function createButton(text, pos, action) local button = Instance.new("TextButton") button.Size = UDim2.new(0.9, 0, 0.1, 0) button.Position = pos button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Text = text button.Font = Enum.Font.SourceSansBold button.TextSize = 16 button.Parent = frame button.MouseButton1Click:Connect(action) end -- Admin Command Function (HD Admin Required) local function runCommand(command) local RequestCommand = ReplicatedStorage:FindFirstChild("HDAdminHDClient") if RequestCommand and RequestCommand:FindFirstChild("Signals") then RequestCommand.Signals.RequestCommand:InvokeServer(command) else warn("HD Admin not found! Make sure it's installed.") end end -- Flashing Fog Function local function flashingFog() for i = 1, 100 do runCommand(";fogcolor 0 0 0") -- Black wait(0.001) runCommand(";fogcolor 255 255 255") -- White wait(0.001) end end -- Toad Rain Script local function activateToadRain() loadstring([[ -- Rain Toad F3X Script By ItsKittyyyGD local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local tool for i, v in player:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end for i, v in game.ReplicatedStorage:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end local remote = tool.SyncAPI.ServerEndpoint function _(args) remote:InvokeServer(unpack(args)) end function CreatePart(cf, parent) local args = { [1] = "CreatePart", [2] = "Normal", [3] = cf, [4] = parent } _(args) end function AddMesh(part) local args = { [1] = "CreateMeshes", [2] = { [1] = { ["Part"] = part } } } _(args) end function SetMesh(part, meshid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["MeshId"] = "rbxassetid://" .. meshid } } } _(args) end function SetTexture(part, texid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["TextureId"] = "rbxassetid://" .. texid } } } _(args) end local function createRainToads() while true do wait(0.3) -- Wait for the toads to appear if player.Character and player.Character:FindFirstChild("Humanoid") and player.Character.Humanoid.Health > 0 then local hrpcf = player.Character.HumanoidRootPart.CFrame local x = hrpcf.x local z = hrpcf.z local randint = math.random(-600, 600) local randint2 = math.random(-600, 600) local xloc = randint + x local zloc = randint2 + z local cf = player.Character.HumanoidRootPart.CFrame.y + 800 spawn(function() local newToad = CreatePart(CFrame.new(math.floor(xloc), math.random(cf, cf + 400), math.floor(zloc)), workspace) for i, v in game.Workspace:GetDescendants() do if v.Name == "Part" and v.Parent == workspace and v.CFrame.x == math.floor(xloc) and v.CFrame.z == math.floor(zloc) then AddMesh(v) SetMesh(v, "7234998844") SetTexture(v, "1009824086") v.Orientation = Vector3.new(0, 0, 0) local sound = Instance.new("Sound", v) sound.SoundId = "rbxassetid://153752123" sound.Volume = 10 sound.PlayOnRemove = true sound:Destroy() end end end) else wait(1) end end end coroutine.wrap(createRainToads)() ]])() end -- "Fuck Da Frogz" Function local function fuckDaFrogz() runCommand(";music 8418482985") runCommand(";pitch 1.1") runCommand(";volume inf") end -- Buttons createButton("Explode All", UDim2.new(0.05, 0, 0.2, 0), function() runCommand(";explode all") end) createButton("Loop Kill All", UDim2.new(0.05, 0, 0.3, 0), function() runCommand(";loopkill all") end) createButton("Funny Music", UDim2.new(0.05, 0, 0.4, 0), function() runCommand(";music 7363412529") runCommand(";pitch 1.1") end) createButton("Remove Fog", UDim2.new(0.05, 0, 0.5, 0), function() runCommand(";fogend 100000") end) createButton("Flashing Fog", UDim2.new(0.05, 0, 0.6, 0), function() flashingFog() end) createButton("Toad Rain", UDim2.new(0.05, 0, 0.7, 0), function() activateToadRain() end) createButton("Fuck Da Frogz", UDim2.new(0.05, 0, 0.8, 0), function() fuckDaFrogz() end) print("Fuck You Nigger Skiddzers")