Player is unable to move on respawn?
Howdy! I am making a cutscene. The cutscene is working well, it teleports the player to the spawn and all, but whenever the player dies and respawns, they are unable to move. I am not sure why this is happening. Heres the script:
01 | local TweenService = game:GetService( "TweenService" ) |
02 | local Camera = game.Workspace.Camera |
03 | local plr = game.Players.LocalPlayer |
04 | local char = plr.Character |
05 | local hum = char:WaitForChild( "Humanoid" ) |
07 | function tween(part 1 , part 2 , cutsceneTime) |
08 | local tweeninfo = TweenInfo.new( |
10 | Enum.EasingStyle.Sine, |
11 | Enum.EasingDirection.Out, |
17 | Camera.CameraType = Enum.CameraType.Scriptable |
18 | Camera.CFrame = part 1. CFrame |
20 | local tween = TweenService:Create(Camera, tweeninfo, { CFrame = part 2. CFrame } ) |
25 | Camera.CameraType = Enum.CameraType.Custom |
28 | game.ReplicatedStorage.Cutscene.OnClientEvent:Connect( function () |
29 | char:MoveTo(game.Workspace.PlayerCutsceneTeleporter.Position) |
30 | local PlayerModule = require(plr.PlayerScripts.PlayerModule) |
31 | local Controls = PlayerModule:GetControls() |
33 | tween(Camera, game.Workspace.CameraPart, 3 ) |
35 | plr:Move(Vector 3. new( 0 , 0 , - 1 ), true ) |
36 | tween(game.Workspace.CameraPart, game.Workspace.CameraPart 2 , 3 ) |
37 | tween(game.Workspace.CameraPart 2 , game.Workspace.CameraPart 3 , 3 ) |
38 | tween(game.Workspace.CameraPart 3 , game.Workspace.CameraPart 4 , 2 ) |
NOTE: This is a local script inside of StarterGui. No, its not inside of any GUIs, in case you were wondering. If you need any more information, let me know, as this is my first question.