ADVERTISEMENTREMOVE ADS
Game icon

Auto Train

Script preview thumbnail
Script Preview

Description

Auto trains for you, change 'true' to 'false' in order to turn the auto train off

Features:

  • Auto train

Tested with

ADVERTISEMENTREMOVE ADS
21 Lines • 395 Bytes
Raw
--TOGGLES
getgenv().autotrain = true -- true for on, false for off
--VARIABLES
local player = game:GetService("Players").LocalPlayer
local char = player.Character
local sword = char:FindFirstChildOfClass("Tool")
function train()
if sword then
sword:Activate()
end
end
while getgenv().autotrain do
task.wait()
train()
if not getgenv().autotrain then
break
end
end
ADVERTISEMENTREMOVE ADS

Comments

3 comments
to add a comment
no

ngl this is buns only because the sword dissapears which i know is a game bug not script bug

0
0
ic

@nolanbiss ya im too lazy to make it fully function with the game😪😪

0
0
no

@icmp fair. to be honest i wouldnt either XD

1
0
ADVERTISEMENTREMOVE ADS