Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Detect Part Leaving Region3?

Asked by
Asentis 17
6 years ago

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.

01repeat wait() until game.Players.LocalPlayer ~= nil
02repeat wait() until game.Players.LocalPlayer.Character ~= nil
03repeat wait() until game:IsLoaded()
04 
05local Player = game.Players.LocalPlayer
06local Character = Player.Character
07local PlayerGui = Player:WaitForChild("PlayerGui")
08 
09local Mouse = Player:GetMouse()
10 
11Selected = nil
12CanMove = false
13 
14local Barrier = game.Workspace.Barrier
15local BarrierRegion = Region3.new(Vector3.new(0,0,0), Barrier.Size)
View all 55 lines...

Answer this question