-- TOGGLE getgenv().auto = true -- true for on, false for off -- VARIABLES local plr = game.Players.LocalPlayer local char = plr.Character local hrp = char.HumanoidRootPart local xp = workspace.SeasonCurrencyCollectable -- FUNCTIONS function collectXp() for _,v in next, xp:GetDescendants() do if v:IsA("TouchTransmitter") then firetouchinterest(v.Parent, hrp, 0) end end end -- MAIN while getgenv().auto do collectXp() task.wait() end