Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- 📜 Infinite Slap Admin GUI (FE)
- ✅ Works in Slap Battles, Custom Gloves, and similar games
- ⚠️ Fully FE compatible – use with Synapse X or any executor
- 🔥 Features: Infinite Slaps, Waterwalk, Ban/Kick All, Admin Panel UI
- ]]
- local Players = game:GetService("Players")
- local ReplicatedStorage = game:GetService("ReplicatedStorage")
- local player = Players.LocalPlayer
- local Attempt = ReplicatedStorage:WaitForChild("AttemptS")
- -- Sound setup
- local sound = Instance.new("Sound")
- sound.SoundId = "rbxassetid://6821054463"
- sound.Volume = 1
- sound.Parent = player:WaitForChild("PlayerGui")
- -- GUI Setup
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "FakeAdminPanel"
- screenGui.Parent = player:WaitForChild("PlayerGui")
- screenGui.ResetOnSpawn = false
- -- Main Frame
- local mainFrame = Instance.new("Frame")
- mainFrame.Size = UDim2.new(0, 250, 0, 300)
- mainFrame.Position = UDim2.new(0.5, -125, 0.5, -150)
- mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- mainFrame.BorderSizePixel = 0
- mainFrame.Draggable = true
- mainFrame.Active = true
- mainFrame.Parent = screenGui
- -- Title
- local title = Instance.new("TextLabel")
- title.Size = UDim2.new(1, 0, 0, 40)
- title.Text = "Admin Panel"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- title.Font = Enum.Font.SourceSansBold
- title.TextSize = 24
- title.Parent = mainFrame
- -- Menu Options
- local options = {
- "Infinite slaps",
- "Waterwalk",
- "Give access to all gloves",
- "Kick/Ban others *THIS IS FE, WARNING THIS COULD GET YOU BANNED!",
- "Admin"
- }
- for i, text in ipairs(options) do
- local button = Instance.new("TextButton")
- button.Size = UDim2.new(1, -20, 0, 40)
- button.Position = UDim2.new(0, 10, 0, 40 + (i - 1) * 45)
- button.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- button.TextColor3 = Color3.fromRGB(255, 255, 255)
- button.Font = Enum.Font.SourceSans
- button.TextSize = 20
- button.Text = text
- button.Parent = mainFrame
- button.MouseButton1Click:Connect(function()
- sound:Play()
- Attempt:FireServer(text)
- local imageCover = Instance.new("ImageLabel")
- imageCover.Size = UDim2.new(1, 0, 1, 0)
- imageCover.Position = UDim2.new(0, 0, 0, 0)
- imageCover.BackgroundTransparency = 1
- imageCover.Image = "rbxassetid://18103241239"
- imageCover.ImageTransparency = 0
- imageCover.Parent = screenGui
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment