--[[ chinaboom - by jvvadavid_ (discord) open source, no UI, config-based edit the amount in the config after you level up --]] -- // after executing go in the play thing to actually get xp and stuff local CONFIG = { AMOUNT = 9999, DELAY = 0.1 } local RS = game:GetService("ReplicatedStorage") local coinRemote = RS:WaitForChild("ReplicatedStorageHolders").Events.AddCoins local xpRemote = RS:WaitForChild("ReplicatedStorageHolders").Events.AddXP while true do pcall(function() coinRemote:FireServer(CONFIG.AMOUNT) end) pcall(function() xpRemote:FireServer(CONFIG.AMOUNT) end) task.wait(CONFIG.DELAY) end