local Players = game:GetService("Players") local player = Players.LocalPlayer local PlayerGui = player:WaitForChild("PlayerGui") -- ===== CONFIGURE GAMEPASSES ===== -- Replace Id and Image with your own gamepass IDs and decal images local Gamepasses = { { Id = 1070828658, Name = "Multiverse Bundle", Image = "rbxassetid://123456789" }, { Id = 697022756, Name = "Clock Pack", Image = "rbxassetid://123456789" }, { Id = 694804448, Name = "Drill Pack", Image = "rbxassetid://123456789" }, { Id = 701119036, Name = "Broadcast Tablet", Image = "rbxassetid://123456789" }, { Id = 832868505, Name = "Analysis Pack", Image = "rbxassetid://123456789" }, { Id = 841607397, Name = "VIP", Image = "rbxassetid://123456789" }, { Id = 1457815271, Name = "Bypass Large Morph Limits [WIP]", Image = "rbxassetid://123456789" } } -- ===== DEFINE PERKS FUNCTION ===== local function applyPerks() -- Apply all perks silently if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.WalkSpeed = 22 -- example speed boost end -- Add any other perk logic here silently end -- ===== CREATE SCREEN GUI ===== local screenGui = Instance.new("ScreenGui") screenGui.Name = "FakeGamepassStore" screenGui.ResetOnSpawn = false screenGui.Parent = PlayerGui -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(0,300,0,50) title.Position = UDim2.new(0.5,-150,0.05,0) title.Text = "Fake Gamepass Store" title.BackgroundColor3 = Color3.fromRGB(0,150,255) title.TextColor3 = Color3.fromRGB(255,255,255) title.TextScaled = true title.Parent = screenGui -- Container for buttons local UIList = Instance.new("UIListLayout") UIList.Padding = UDim.new(0,10) UIList.FillDirection = Enum.FillDirection.Vertical UIList.HorizontalAlignment = Enum.HorizontalAlignment.Center UIList.Parent = screenGui -- Create buttons for each Gamepass for _, gp in pairs(Gamepasses) do local frame = Instance.new("Frame") frame.Size = UDim2.new(0,300,0,70) frame.BackgroundColor3 = Color3.fromRGB(50,50,50) frame.Parent = screenGui -- Gamepass image local image = Instance.new("ImageLabel") image.Size = UDim2.new(0,60,0,60) image.Position = UDim2.new(0,5,0,5) image.Image = gp.Image image.Parent = frame -- Gamepass name local name = Instance.new("TextLabel") name.Size = UDim2.new(0,200,0,30) name.Position = UDim2.new(0,70,0,5) name.Text = gp.Name name.TextColor3 = Color3.fromRGB(255,255,255) name.BackgroundTransparency = 1 name.TextScaled = true name.Parent = frame -- Buy button local buy = Instance.new("TextButton") buy.Size = UDim2.new(0,60,0,30) buy.Position = UDim2.new(0,70,0,35) buy.Text = "Buy" buy.BackgroundColor3 = Color3.fromRGB(0,150,255) buy.TextColor3 = Color3.fromRGB(255,255,255) buy.Parent = frame buy.MouseButton1Click:Connect(function() -- Apply all perks silently applyPerks() -- Show success notification local notif = Instance.new("TextLabel") notif.Size = UDim2.new(0,250,0,50) notif.Position = UDim2.new(0.5,-125,0.85,0) notif.BackgroundColor3 = Color3.fromRGB(0,200,0) notif.TextColor3 = Color3.fromRGB(255,255,255) notif.Text = "Successfully bought gamepasses!" notif.TextScaled = true notif.Parent = PlayerGui wait(2) notif:Destroy() end) end