local Ready = true
local ReadyDo = true
script.Parent.Touched:Connect(function(hit)
01 | if (hit) then |
02 |
03 | local H = hit.Parent:FindFirstChild( "Humanoid" ) |
04 |
05 | if H ~ = nil and Ready = = true then |
06 |
07 | Ready = false |
08 |
09 | local plyr = game.Players:FindFirstChild(H.Parent.Name) |
10 |
11 | plyr.PlayerGui.ExitRed.Enabled = true |
12 |
13 | hit.Parent.HumanoidRootPart.CFrame = CFrame.new( 33.162 , 8.374 , 53.93 ) |
14 |
15 | end |
16 |
17 | end |
18 |
19 | end ) |
also its not the script that is wrong it is my door not working after the first time so I don't know if it has anything to do with my script thank you and ya
The problem I see with your code is...You never set "ready" back to true after it is set to false and you need to use a remote event to enable that gui
Here are a few changes I made to your code
01 | local ready = true |
02 |
03 | script.Parent.Touched:Connect( function (hit) |
04 | --no need to check for hit, this function will never run if something does not "hit" the brick |
05 |
06 | --want to avoid trying to find something by its name if you can, instead look for the humanoid class |
07 | local H = hit.Parent:FindFirstChildOfClass( "Humanoid" ) |
08 |
09 | --when checking if something exists, there is not need to do ~= nil |
10 | if H and ready = = true then |
11 | ready = false |
12 |
13 | --Should use this instead of trying to find the player by name(more reliable) |
14 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
15 |