local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local MissileLaunchedEvent = ReplicatedStorage:WaitForChild("MissileLaunchedEvent") local player = Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "EasyLeaderboardGui" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local mainButton = Instance.new("TextButton") mainButton.Name = "EasyButton" mainButton.Size = UDim2.new(0, 200, 0, 50) mainButton.Position = UDim2.new(0.5, -100, 0.5, -25) mainButton.Text = "Easy Leaderboard" mainButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) mainButton.TextColor3 = Color3.new(1, 1, 1) mainButton.Font = Enum.Font.SourceSansBold mainButton.TextSize = 24 mainButton.Parent = gui local toggleButton = Instance.new("TextButton") toggleButton.Name = "ToggleVisibility" toggleButton.Size = UDim2.new(0, 30, 0, 30) toggleButton.Position = UDim2.new(0, 10, 0, 10) toggleButton.Text = "-" toggleButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30) toggleButton.TextColor3 = Color3.new(1, 1, 1) toggleButton.Font = Enum.Font.SourceSans toggleButton.TextSize = 18 toggleButton.Parent = gui local speedBox = Instance.new("TextBox") speedBox.Name = "SpeedBox" speedBox.Size = UDim2.new(0, 100, 0, 30) speedBox.Position = UDim2.new(0.5, -50, 0.5, 40) speedBox.PlaceholderText = "Vitesse (ex: 0.05)" speedBox.Text = "0.05" speedBox.BackgroundColor3 = Color3.fromRGB(20, 20, 20) speedBox.TextColor3 = Color3.new(1, 1, 1) speedBox.Font = Enum.Font.SourceSans speedBox.TextSize = 18 speedBox.ClearTextOnFocus = false speedBox.Parent = gui local running = false mainButton.MouseButton1Click:Connect(function() running = not running if running then mainButton.Text = "Stop Leaderboard" task.spawn(function() while running do MissileLaunchedEvent:FireServer() local speed = tonumber(speedBox.Text) if speed and speed > 0 then task.wait(speed) else task.wait() end end end) else mainButton.Text = "Easy Leaderboard" end end) toggleButton.MouseButton1Click:Connect(function() local visible = mainButton.Visible mainButton.Visible = not visible speedBox.Visible = not visible toggleButton.Text = mainButton.Visible and "-" or "+" end)