#Hello I need some help with 2 scripts and a RemoteEvent
1 messages · Page 1 of 1 (latest)
local part = workspace.Part
local part2 = workspace.Part2
local sound = workspace.Sound
local sound2 = workspace.Sound2
part.Touched:Connect(function(p)
if p.Parent:FindFirstChild("Humanoid") then
sound:Play()
sound2:Stop()
end
end)
part2.Touched:Connect(function(p)
if p.Parent:FindFirstChild("Humanoid") then
sound2:Play()
sound:Stop()
end
end)
something like this?