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

Why the word this is a not working? please help this is making me loss brain cells

Asked by 5 years ago

local Ready = true

local ReadyDo = true

script.Parent.Touched:Connect(function(hit)

01if(hit)then
02 
03local H = hit.Parent:FindFirstChild("Humanoid")
04 
05if H ~= nil and Ready == true then
06 
07Ready = false
08 
09local plyr = game.Players:FindFirstChild(H.Parent.Name)
10 
11plyr.PlayerGui.ExitRed.Enabled = true
12 
13    hit.Parent.HumanoidRootPart.CFrame = CFrame.new(33.162, 8.374, 53.93)
14 
15end
16 
17end
18 
19end)

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

1 answer

Log in to vote
0
Answered by 5 years ago

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

01local ready = true
02 
03script.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 
View all 26 lines...
0
thanks! vortex767 20 — 5y
Ad

Answer this question