Skip to content

Grau sp script #2

@luancarvalhotelles12-prog

Description

local ScreenGui = Instance.new("ScreenGui")
local MainFrame = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local ScrollingFrame = Instance.new("ScrollingFrame")
local UIListLayout = Instance.new("UIListLayout")

ScreenGui.Parent = game.CoreGui
MainFrame.Name = "MenuGrauSP"
MainFrame.Parent = ScreenGui
MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
MainFrame.Position = UDim2.new(0.3, 0, 0.3, 0)
MainFrame.Size = UDim2.new(0, 250, 0, 350)
MainFrame.Active = true
MainFrame.Draggable = true

Title.Parent = MainFrame
Title.Text = "GRAU SP - GAMEPASS"
Title.Size = UDim2.new(1, 0, 0, 40)
Title.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.TextSize = 18

ScrollingFrame.Parent = MainFrame
ScrollingFrame.Position = UDim2.new(0, 0, 0, 45)
ScrollingFrame.Size = UDim2.new(1, 0, 1, -45)
ScrollingFrame.BackgroundTransparency = 1

UIListLayout.Parent = ScrollingFrame
UIListLayout.Padding =集中Unit.new(0, 5)

local function CriarBotao(nome)
local btn = Instance.new("TextButton")
btn.Parent = ScrollingFrame
btn.Size = UDim2.new(1, -10, 0, 40)
btn.Text = nome
btn.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
btn.TextColor3 = Color3.fromRGB(255, 255, 255)
btn.MouseButton1Click:Connect(function()
print("Tentando liberar: " .. nome)
-- Aqui você precisaria dos nomes exatos dos Remotes do Grau SP
end)
end

-- Lista de exemplo baseada nos passes do jogo
CriarBotao("BMW R1250")
CriarBotao("TIGER 1200")
CriarBotao("HONDA TRANSALP")
CriarBotao("XRE 300")
CriarBotao("MOTO DE POLÍCIA")

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions