[ad_1]
Created by Harem King
Features:
Note: this script doesn’t do the trainer for you, it just switches when you have 100% on a trainer since for some reason all ro ghoul auto trainers don’t autoswitch your trainers once your done training.
btw u can rerarrange the trainers if you wanna do it in a diff order but thats the order which their in in the game
shared.Type = "Ghoul" -- CCG/Ghoul
local Player = game.Players.LocalPlayer
local TrainerF = Player.PlayerFolder.Trainers
local CurrentTrainer = TrainerF:FindFirstChild(shared.Type.."Trainer")
local GhoulTrainers = {
"(S1) Ken Kaneki",
"(S1) Renji Yomo",
"(S1) Touka Kirishima",
"(S1) Nishiki Nishio",
"(S1) Shuu Tsukiyama",
"(S1) Kuzen Yoshimura",
"(S1) Rize Kamishiro",
"(S1) Yakumo Oomori",
"(Tortured) Ken Kaneki"
}
local CCGTrainers = {
"(S1) Kureo Mado",
"(S1) Koutarou Amon",
"(Suit) Yukinori Shinohara",
"(Battle) Yukinori Shinohara",
"(Arata) Yukinori Shinohara",
"(S1) Hideyoshi Nagachika",
"(S1) Juuzou Suzuya",
"(Battle) Koutarou Amon",
"(Battle) Juuzou Suzuya"
}
while wait(30) do
if shared.Type == "Ghoul" then
if TrainerF:FindFirstChild(CurrentTrainer.Value).Progress.Value == "100" then
if table.find(GhoulTrainers,CurrentTrainer.Value) and GhoulTrainers[table.find(GhoulTrainers,CurrentTrainer.Value) + 1] then
game:GetService("ReplicatedStorage").Remotes.Trainers.ChangeTrainer:InvokeServer(GhoulTrainers[table.find(GhoulTrainers,CurrentTrainer.Value) + 1])
end
end
elseif shared.Type == "CCG" then
if TrainerF:FindFirstChild(CurrentTrainer.Value).Progress.Value == "100" then
if table.find(CCGTrainers,CurrentTrainer.Value) and CCGTrainers[table.find(CCGTrainers,CurrentTrainer.Value) + 1] then
game:GetService("ReplicatedStorage").Remotes.Trainers.ChangeTrainer:InvokeServer(CCGTrainers[table.find(CCGTrainers,CurrentTrainer.Value) + 1])
end
end
end
end
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]