For some reason I can not teleport players, any fix?
Asked by
6 years ago Edited 6 years ago
01 | local button = script.Parent |
02 | local didLandYet = false |
04 | button.MouseButton 1 Click:Connect( function () |
05 | local player = script.Parent.Parent.Parent.Parent |
06 | local humanoid = player.Character.Humanoid |
07 | local escapePod = game.ReplicatedStorage.EscapePod:Clone() |
08 | local stopper = game.Workspace.Stopper |
09 | humanoid.CameraOffset = Vector 3. new(- 10 , 3 , - 10 ) |
10 | escapePod.Parent = game.Workspace |
11 | escapePod.Name = player.Name.. "EscapePod" |
12 | local seat = escapePod.Seat |
14 | script.Parent.Parent.Enabled = false |
16 | stopper.CanCollide = false |
18 | stopper.CanCollide = true |
23 | local Humanoid = script.Parent.Parent.Parent.Parent.Character.Humanoid |
26 | Humanoid.Changed:Connect( function () |
27 | local EscapePod = game.Workspace:WaitForChild(script.Parent.Parent.Parent.Parent.Name.. "EscapePod" , 5 ) |
28 | if EscapePod = = nil then |
29 | elseif Humanoid.Jump = = true and didLandYet = = true and canAct = = true then |
32 | local humanoidRootPart = script.Parent.Parent.Parent.Parent.Character.HumanoidRootPart |
33 | local X = humanoidRootPart.Position.x |
34 | local Y = humanoidRootPart.Position.y + 15 |
35 | local Z = humanoidRootPart.Position.Z |
36 | humanoidRootPart.CFrame = CFrame.new(Vector 3. new(X, Y, Z)) |
37 | Humanoid.CameraOffset = Vector 3. new( 0 , 0 , 0 ) |
38 | print ( "humanoid ejected" ) |
41 | elseif Humanoid.Jump = = true and didLandYet = = false and canAct = = true then |
43 | EscapePod.Seat:Sit(Humanoid) |
44 | print ( "humanoid sat down forcefully" ) |
My code is all in one script and experimental mode is on. I get no errors and this is very annoying, Everything else is working besides the part of the script that changed the CFrame of the humanoid root part to be its current X co-ordinate, Y co-ordinate + 15, and Z co-ordinate.