Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Player is unable to move on respawn?

Asked by
Oxprem 140
4 years ago

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:

01local TweenService = game:GetService("TweenService")
02local Camera = game.Workspace.Camera
03local plr = game.Players.LocalPlayer
04local char = plr.Character
05local hum = char:WaitForChild("Humanoid")
06 
07function tween(part1, part2, cutsceneTime)
08    local tweeninfo = TweenInfo.new(
09        cutsceneTime,
10        Enum.EasingStyle.Sine,
11        Enum.EasingDirection.Out,
12        0,
13        false,
14        0
15    )
View all 40 lines...

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.

0
I'm wondering if you should disable reset? nasyplay 0 — 4y
0
How would I do that? Oxprem 140 — 4y

Answer this question