#I need help

12 messages · Page 1 of 1 (latest)

cedar rapids
#

With?

#

…

#

Does every player have the touch the first trigger or only 1 player?

#

Just use a .Touched event on the server. Then have the server add the second trigger

#

Welp, then it’s time to learn

#

I could, but you don’t learn stuff by pressing ctrl + c, ctrl+ v

clear escarp
#

chatGPT 😭

opal vortex
#

you can make the trigger at the second room and disable "CanTouch" and when you touch the first triggre just unable "CanTouch" (i thing)

#

sure

#

local triggerOne = script.Parent
local triggerTwo = workspace.Triggers.SecondTrigger --Change triggerTwo to trigger you want to touch when triggerOne is touched.

local function onTouch(hit)
if hit.Parent:FindFirstChild("Humanoid") then
triggerTwo.CanTouch = true
end
end

triggerOne.Touched:Connect(onTouch)

#

in first trigger

#

if it isn't working the ping me