Ro Ghoul Script | AUTO CHANGE TRAINER
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