Advertisement
SirrVindict

exxdee

Aug 28th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  2. counter = 0
  3.  
  4. while wait() do
  5. for i,v in next, game:GetService('CoreGui'):GetChildren() do
  6. if v.Name == "JailFixer" then
  7. for i,a in next, v:GetChildren()
  8. if a.Name = "Underline" then
  9. a.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  10. counter = counter + 0.001
  11. end
  12. end
  13. end
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement