While I’m sitting a seat and want to interact with the proximity prompt next to it and I’m sit on the chair (without jumping before interacting), the proximity prompt disappears when I interact with it. Sorry I haven’t explained well but here is a video of what happens…
robloxapp-20220728-2217358.wmv (544.5 KB)
Could you include your script so we can figure out the issue?
Here is the code
script.Parent.Parent.Parent.Seat:GetPropertyChangedSignal("Occupant"):Connect(function()
if script.Parent.Parent.Parent.Seat.Occupant then
script.Parent.Enabled = false
else
script.Parent.Enabled = true
end
end)
script.Parent.Triggered:Connect(function(plr)
script.Parent.Parent.Parent.Seat:Sit(plr.Character.Humanoid)
script.Parent.Enabled = false
end)
uh…because your setting it to false when its triggered i think.
1 Like
if i misunderstood this then please correct me. But removing this line should fix it.
Edit:
I think its actullay when your sitting on the seat your disabling your prompt.
1 Like
Thank you this was the solution
1 Like