Detect Part Leaving Region3?
Today I attempted to create a simple placement script where the player can place stuff (not added yet) but ran into some troubles. I was going to use the Touched event but created some issues so instead I'm using Region3. The selected part is being validated can "CanMove" is being set to true if it's inside the Region3 but adding an else statement doesn't seem to do anything. I even tried printing something and nothing happened.
A concept or an explaination is all I need. Thanks.
Below is my full script which I am using.
01 | repeat wait() until game.Players.LocalPlayer ~ = nil |
02 | repeat wait() until game.Players.LocalPlayer.Character ~ = nil |
03 | repeat wait() until game:IsLoaded() |
05 | local Player = game.Players.LocalPlayer |
06 | local Character = Player.Character |
07 | local PlayerGui = Player:WaitForChild( "PlayerGui" ) |
09 | local Mouse = Player:GetMouse() |
14 | local Barrier = game.Workspace.Barrier |
15 | local BarrierRegion = Region 3. new(Vector 3. new( 0 , 0 , 0 ), Barrier.Size) |
16 | Barrier.CFrame = BarrierRegion.CFrame |
20 | Selected = workspace.bRICK |
24 | if CanMove = = true and Character.Humanoid.Health > 0 and Character ~ = nil and Player ~ = nil and Selected ~ = nil then |
25 | Selected.Position = Vector 3. new(math.floor(Mouse.Hit.p.X), 0 , math.floor(Mouse.Hit.p.Z)) |
30 | if CanMove = = true and Selected ~ = nil then |
31 | Selected.Color = Color 3. fromRGB( 255 , 89 , 89 ) |
32 | elseif CanMove ~ = true then |
33 | Selected.Color = Color 3. fromRGB( 25 , 25 , 25 ) |
40 | local parts = workspace:FindPartsInRegion 3 WithWhiteList(BarrierRegion, { Selected } , 1000 ) |
42 | for i,v in pairs (parts) do |
52 | if Selected ~ = nil and Mouse.Target ~ = nil and Mouse ~ = nil and CanMove = = true then |