pureW

Silly Script for Ultimate: Slap Battles!

Apr 19th, 2025 (edited)
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.37 KB | None | 0 0
  1. --[[
  2. 📜 Infinite Slap Admin GUI (FE)
  3. ✅ Works in Slap Battles, Custom Gloves, and similar games
  4. ⚠️ Fully FE compatible – use with Synapse X or any executor
  5. 🔥 Features: Infinite Slaps, Waterwalk, Ban/Kick All, Admin Panel UI
  6. ]]
  7.  
  8. local Players = game:GetService("Players")
  9. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  10. local player = Players.LocalPlayer
  11.  
  12. local Attempt = ReplicatedStorage:WaitForChild("AttemptS")
  13.  
  14. -- Sound setup
  15. local sound = Instance.new("Sound")
  16. sound.SoundId = "rbxassetid://6821054463"
  17. sound.Volume = 1
  18. sound.Parent = player:WaitForChild("PlayerGui")
  19.  
  20. -- GUI Setup
  21. local screenGui = Instance.new("ScreenGui")
  22. screenGui.Name = "FakeAdminPanel"
  23. screenGui.Parent = player:WaitForChild("PlayerGui")
  24. screenGui.ResetOnSpawn = false
  25.  
  26. -- Main Frame
  27. local mainFrame = Instance.new("Frame")
  28. mainFrame.Size = UDim2.new(0, 250, 0, 300)
  29. mainFrame.Position = UDim2.new(0.5, -125, 0.5, -150)
  30. mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  31. mainFrame.BorderSizePixel = 0
  32. mainFrame.Draggable = true
  33. mainFrame.Active = true
  34. mainFrame.Parent = screenGui
  35.  
  36. -- Title
  37. local title = Instance.new("TextLabel")
  38. title.Size = UDim2.new(1, 0, 0, 40)
  39. title.Text = "Admin Panel"
  40. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  41. title.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  42. title.Font = Enum.Font.SourceSansBold
  43. title.TextSize = 24
  44. title.Parent = mainFrame
  45.  
  46. -- Menu Options
  47. local options = {
  48.     "Infinite slaps",
  49.     "Waterwalk",
  50.     "Give access to all gloves",
  51.     "Kick/Ban others *THIS IS FE, WARNING THIS COULD GET YOU BANNED!",
  52.     "Admin"
  53. }
  54.  
  55. for i, text in ipairs(options) do
  56.     local button = Instance.new("TextButton")
  57.     button.Size = UDim2.new(1, -20, 0, 40)
  58.     button.Position = UDim2.new(0, 10, 0, 40 + (i - 1) * 45)
  59.     button.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  60.     button.TextColor3 = Color3.fromRGB(255, 255, 255)
  61.     button.Font = Enum.Font.SourceSans
  62.     button.TextSize = 20
  63.     button.Text = text
  64.     button.Parent = mainFrame
  65.  
  66.     button.MouseButton1Click:Connect(function()
  67.         sound:Play()
  68.         Attempt:FireServer(text)
  69.  
  70.  
  71.         local imageCover = Instance.new("ImageLabel")
  72.         imageCover.Size = UDim2.new(1, 0, 1, 0)
  73.         imageCover.Position = UDim2.new(0, 0, 0, 0)
  74.         imageCover.BackgroundTransparency = 1
  75.         imageCover.Image = "rbxassetid://18103241239"
  76.         imageCover.ImageTransparency = 0
  77.         imageCover.Parent = screenGui
  78.     end)
  79. end
Advertisement
Add Comment
Please, Sign In to add comment