Advertisement
drakon-firestone

Untitled

Apr 26th, 2025
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. local block = script.Parent
  2.  
  3. while true do
  4. for i=1,20,1 do
  5. block.Transparency += 0.1
  6. wait(0.2)
  7. end
  8. block.CanCollide = false
  9. wait(4)
  10. block.CanCollide = true
  11. for i=1,20,1 do
  12. block.Transparency -= 0.1
  13. wait(0.2)
  14. end
  15.  
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement