MADE BY AyoBlue#0001
FEATURE:
- AUTO SPIN
GAME LINK:
PROJECT SLAYERS
SCRIPT:
local clans = {
['Legendary'] = {'Kocho', 'Shinazugawa'},
['Mythic'] = {'Tomioka'},
['Supreme'] = {'Kamado', 'Agatsuma'}
}
local want = 'Supreme'
--[[
You can put a genre, or clan name in want.
Example 1: 'Supreme'
Example 2: 'Kamado'
]]
while wait() do
local x, y = game.ReplicatedStorage.Remotes.To_Server.Handle_Initiate_S_:InvokeServer('check_can_spin')
if clans[want] then
local data;
for i,v in pairs(clans[want]) do
if v:lower() == y:lower() then
data = true;
break
end
end
if data then
break;
end
else
if y:lower() == want:lower() then
break
end
end
end