Advertisement
Mickeydamours

Attack On Titan: Freedom Awaits BLOODLINE / EYE CHANGERS GUI Mickey roblox script

Dec 18th, 2020
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. Attack On Titan: Freedom Awaits BLOODLINE / EYE CHANGERS GUI Mickey roblox script
  2.  
  3. Discord : https://discord.gg/GHvJCWV
  4.  
  5. Free exploit Krnl : https://direct-link.net/154316/krnlll
  6.  
  7.  
  8. Script : -- UI Library
  9. local library = loadstring(game:HttpGetAsync("https://pastebin.com/raw/HYcfs6KC"))()
  10. local w = library:CreateWindow('auto spin')
  11. w:Section('by egg salad')
  12.  
  13. -- Variable
  14. local handle = game.ReplicatedStorage.Events.CharacterHandler
  15. local stats = require(game.ReplicatedStorage.Modules.GachaStats)
  16. local eye,blood = stats.EyeColors,stats.Bloodlines
  17.  
  18. -- Notify
  19. local function notify(title,text,dur)
  20. game:GetService("StarterGui"):SetCore("SendNotification",{
  21. Title = title,
  22. Text = text,
  23. Duration = dur or 5
  24. })
  25. end
  26.  
  27. -- Eye Spins
  28. w:Section('eyes')
  29. for i,v in pairs(eye) do
  30. w:Toggle(v.Name.." - "..v.Rarity,{flag=v.Name})
  31. end
  32. w:Button('spin eyes',function()
  33. local acquired = ""
  34. repeat
  35. local ok = handle:InvokeServer("EyeColorSpin")
  36. acquired = ok[#ok].Name
  37. notify("Spun and got:",acquired)
  38. until w.flags[acquired]
  39. notify("Auto spin done, you got:",acquired,15)
  40. end)
  41.  
  42. -- Bloodline Spins
  43. w:Section('bloodline')
  44. for i,v in pairs(blood) do
  45. if v.Rarity < 0.5 then
  46. w:Toggle(v.Name.." - "..v.Rarity,{flag=v.Name})
  47. end
  48. end
  49. w:Button('spin blood',function()
  50. local acquired = ""
  51. repeat
  52. local ok = handle:InvokeServer("BloodlineSpin")
  53. acquired = ok[#ok]
  54. notify("Spun and got:",acquired)
  55. until w.flags[acquired]
  56. notify("Auto spin done, you got:",acquired,15)
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement