Typchecking Problem

It’s only there to assist you within your code

so if you do

re.OnServerEvent:Connect(function(player, var:string)
    -- anytime you use "var" in here it will be typechecked

    var() -- can't call type "string"
end)

Here read this post

1 Like