ADVERTISEMENTREMOVE ADS
Auto Collect Xp
46,986 views
Description
Auto collects xp for you, turn true to false in order to turn the auto collect off
Might only work on xeno
Features:
- Auto collect xp
Tested with
ADVERTISEMENTREMOVE ADS
25 Lines • 505 Bytes
-- 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
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments