Created by whybiee
Features:
- AUTO TRAIN:
_G.AutoTrainToggle = true
function AutoTrain()
while wait() and _G.AutoTrainToggle do
local args = {[1] = {[1] = "Train"}}
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
end
end
AutoTrain()
- AUTO COLLECT ORBS:
_G.toggle = true
--there are different levels of orbs, change the number to the level you want(goes up to level 7)
local aaw = 1
local playerhead = game.Players.LocalPlayer.character.Head
while _G.toggle do task.wait()
for i,v in pairs(game:GetService("Workspace").TimeSpheres[aaw]:GetDescendants()) do
if v.Name == "TouchInterest" and v.Parent then
firetouchinterest(playerhead, v.Parent, 0)
firetouchinterest(playerhead, v.Parent, 1)
wait(0.4)
end
end
end
ENJOY!