I think it has something to do with chunks, I searched it up on devforum and google but nothing how would I use it in an actual script?
1 Like
Looks like it’s used for type casts, which is generally used to tell static typed languages like Luau that you know a value you want to store in a variable isn’t the same type, but you want it to be converted.
It’s a way to make conversions explicit so it’s clear what the code is doing and you don’t have to guess what kinds of shortcuts or logical inferences the compiler might make while processing your code.
1 Like