I’m currently working on a teleporter [like the one in flood escape] for a racing game. Where when you touch the invisible barrier it puts you inside the teleporter then adds your name in an array so the script can teleport you when the race starts. The problem is when the player touches I have it print (“Touch”), so in the output it prints: Touch(x30). I’ve tried a couple if statements so it will only fire touch once but nothing seems to work.
Heres the code:
03 | script.Parent.Touched:connect( function (part) |
05 | local humanoid = part.Parent:FindFirstChild( "Humanoid" ) |
07 | table.insert(Pa, part.Parent.Name) |
08 | local root = part.Parent:FindFirstChild( "HumanoidRootPart" ) |
09 | root.CFrame = script.Parent.Parent.Parent.MovingParts.Platform.CFrame + Vector 3. new( 0 , 5 , 0 ) |
Any idea’s would be greatly appreciated.