Answered by
4 years ago Edited 4 years ago
This is pretty simple. You can use Region3.new()
. That is one method. You can put a Part
in the area that you want the player to be in. Region3
This is the script
03 | function CreateRegion 3 (Part) |
04 | return Region 3. new(Part.Position-(Part.Size/ 2 ), Part.Position+(Part.Size/ 2 )) |
07 | function FindPlayerInRegion 3 FromPart(PartToFindPlayerIn) |
08 | local partForRegion = CreateRegion 3 (PartToFindPlayerIn) |
09 | local playersInRegion 3 = workspace:FindPartsInRegion 3 (partForRegion, nil , math.huge ) |
11 | for i, v in pairs (playersInRegion 3 ) do |
12 | local player = game.Players:GetPlayerFromCharacter(v.Parent) |
14 | if player:FindFirstChild(value) then |
15 | player [ value ] .Value = true |
23 | FindPlayerInRegion 3 FromPart(PartToFindPlayerIn) |
If this does not work, please comment and I will try to fix it.
After this you can do the communicating with scripts for the effect.