qsdfhjgfrdafcsdhvhqe

qsdfhjgfrdafcsdhvhqe

qsdfhjgfrdafcsdhvhqe
sm3n
0 followers

Description

-- Dollar Store - Ultra Simple Version

wait(1) -- Czekaj 1 sekundę na załadowanie gry

-- Usuń stare GUI

pcall(function()

for _, v in pairs(game:GetService("CoreGui"):GetChildren()) do

if v.Name == "DollarGUI" then

v:Destroy()

end

end

end)

-- Stwórz GUI

local gui = Instance.new("ScreenGui")

gui.Name = "DollarGUI"

gui.Parent = game.CoreGui

-- Główna ramka

local frame = Instance.new("Frame")

frame.Parent = gui

frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)

frame.BorderColor3 = Color3.fromRGB(255, 200, 0)

frame.BorderSizePixel = 2

frame.Size = UDim2.new(0, 250, 0, 300)

frame.Position = UDim2.new(0.5, -125, 0.5, -150)

-- Tytuł

local title = Instance.new("TextLabel")

title.Parent = frame

title.Text = "💰 DOLLAR STORE"

title.TextColor3 = Color3.fromRGB(255, 215, 0)

title.BackgroundColor3 = Color3.fromRGB(50, 50, 50)

title.Size = UDim2.new(1, 0, 0, 40)

title.Font = Enum.Font.SourceSansBold

title.TextSize = 20

-- Funkcje

local y = 50

local functions = {

{"Auto Jump", function(state)

if state then

spawn(function()

while wait(0.1) do

local char = game.Players.LocalPlayer.Character

if char and char.Humanoid then

if char.Humanoid.FloorMaterial ~= Enum.Material.Air then

char.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)

end

end

end

end)

end

end},

{"Speed Hack", function()

local char = game.Players.LocalPlayer.Character

if char and char.Humanoid then

char.Humanoid.WalkSpeed = 100

end

end},

{"TP Spawn", function()

local char = game.Players.LocalPlayer.Character

if char then

char.HumanoidRootPart.CFrame = CFrame.new(0, 100, 0)

end

end},

{"Reset", function()

local char = game.Players.LocalPlayer.Character

if char then

char:BreakJoints()

end

end}

}

-- Stwórz przyciski

for i, func in pairs(functions) do

local btn = Instance.new("TextButton")

btn.Parent = frame

btn.Text = func[1]

btn.Size = UDim2.new(0.8, 0, 0, 40)

btn.Position = UDim2.new(0.1, 0, 0, y)

btn.BackgroundColor3 = Color3.fromRGB(70, 70, 70)

btn.TextColor3 = Color3.fromRGB(255, 255, 255)

btn.TextSize = 18

if i == 1 then

local toggled = false

btn.MouseButton1Click:Connect(function()

toggled = not toggled

if toggled then

btn.BackgroundColor3 = Color3.fromRGB(0, 150, 0)

func[2](true)

else

btn.BackgroundColor3 = Color3.fromRGB(70, 70, 70)

end

end)

else

btn.MouseButton1Click:Connect(func[2])

end

y = y + 50

end

print("Dollar Store GUI loaded!")

Comments

1comment
Maanaaaa
Maanaaaa
Rscripts Admin
This user is moderating content
Pro Subscription
This user is subscribed to our pro subscription plan.Visit /pricing to learn more
Pro Subscription
VerifiedModeration40min ago

⚠️ MODERATION NOTICE Your script description is too short, unclear, or unhelpful. Quality descriptions help users understand what they're downloading. Action Required: - Explain what your script does in detail - List the main features and functionality - Include any requirements or instructions for use - Minimum 2-3 sentences of actual descriptive content You have 24 hours to improve your description. Low-effort posts that don't help users will be removed. Repeated low-quality submissions will result in warnings.