I did something similar to this once with Touched
instead of Region3
s. The way I did it was by using tables.
Here's a quick example:
01 | local trigger = workspace.Part |
04 | trigger.Touched:Connect( function (part) |
05 | local plr = game:GetService( "Players" ):GetPlayerFromCharacter(part.Parent) |
07 | for i,v in pairs (players) do |
09 | table.insert(players,plr.Name) |
15 | trigger.TouchEnded:Connect( function (part) |
16 | local plr = game:GetService( "Players" ):GetPlayerFromCharacter(part.Parent) |
18 | for i,v in pairs (players) do |
20 | table.remove(players [ i ] ) |
Then you can just determine who's on the part based on the values in the table