-- LocalScript di StarterGui local player = game.Players.LocalPlayer local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage:WaitForChild("Events"):WaitForChild("ClientRingCollected") -- GUI utama local gui = Instance.new("ScreenGui") gui.Parent = player:WaitForChild("PlayerGui") -- Frame panjang di tengah local frame = Instance.new("Frame") frame.Size = UDim2.new(0.6, 0, 0.2, 0) frame.Position = UDim2.new(0.2, 0, 0.4, 0) frame.BackgroundColor3 = Color3.fromRGB(30,30,30) frame.BackgroundTransparency = 0.3 frame.Parent = gui -- Catatan teks local note = Instance.new("TextLabel") note.Size = UDim2.new(1, 0, 0.5, 0) note.Position = UDim2.new(0, 0, 0, 0) note.BackgroundTransparency = 1 note.Text = "You can AFK while just pressing the respawn button there" note.TextColor3 = Color3.fromRGB(255,255,255) note.TextScaled = true note.Font = Enum.Font.SourceSansBold note.Parent = frame -- Tombol di tengah untuk hapus GUI local closeButton = Instance.new("TextButton") closeButton.Size = UDim2.new(0.4, 0, 0.3, 0) closeButton.Position = UDim2.new(0.3, 0, 0.6, 0) closeButton.BackgroundColor3 = Color3.fromRGB(200,0,0) closeButton.Text = "Close" closeButton.TextColor3 = Color3.fromRGB(255,255,255) closeButton.TextScaled = true closeButton.Font = Enum.Font.SourceSansBold closeButton.Parent = frame -- Event tombol untuk hapus GUI closeButton.MouseButton1Click:Connect(function() gui:Destroy() end) -- Sistem rarities + VIP speed local rarities = {"Rare", "Epic", "Uncommon", "Common"} local isVIP = true -- ubah sesuai sistemmu local normalDelay = 0.0 local vipDelay = 0.00 -- Loop spam while true do for _, rarity in ipairs(rarities) do event:FireServer(rarity) if isVIP then wait(vipDelay) else wait(normalDelay) end end end ---Don't try to edit it