Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Attack On Titan: Freedom Awaits BLOODLINE / EYE CHANGERS GUI Mickey roblox script
- Discord : https://discord.gg/GHvJCWV
- Free exploit Krnl : https://direct-link.net/154316/krnlll
- Script : -- UI Library
- local library = loadstring(game:HttpGetAsync("https://pastebin.com/raw/HYcfs6KC"))()
- local w = library:CreateWindow('auto spin')
- w:Section('by egg salad')
- -- Variable
- local handle = game.ReplicatedStorage.Events.CharacterHandler
- local stats = require(game.ReplicatedStorage.Modules.GachaStats)
- local eye,blood = stats.EyeColors,stats.Bloodlines
- -- Notify
- local function notify(title,text,dur)
- game:GetService("StarterGui"):SetCore("SendNotification",{
- Title = title,
- Text = text,
- Duration = dur or 5
- })
- end
- -- Eye Spins
- w:Section('eyes')
- for i,v in pairs(eye) do
- w:Toggle(v.Name.." - "..v.Rarity,{flag=v.Name})
- end
- w:Button('spin eyes',function()
- local acquired = ""
- repeat
- local ok = handle:InvokeServer("EyeColorSpin")
- acquired = ok[#ok].Name
- notify("Spun and got:",acquired)
- until w.flags[acquired]
- notify("Auto spin done, you got:",acquired,15)
- end)
- -- Bloodline Spins
- w:Section('bloodline')
- for i,v in pairs(blood) do
- if v.Rarity < 0.5 then
- w:Toggle(v.Name.." - "..v.Rarity,{flag=v.Name})
- end
- end
- w:Button('spin blood',function()
- local acquired = ""
- repeat
- local ok = handle:InvokeServer("BloodlineSpin")
- acquired = ok[#ok]
- notify("Spun and got:",acquired)
- until w.flags[acquired]
- notify("Auto spin done, you got:",acquired,15)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement