ADVERTISEMENTREMOVE ADS
Game icon

Auto Collect Xp

Slide Down A Hill
6 months ago
Script preview thumbnail
Script Preview

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
Raw
-- 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

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS