I literally do not know why this is happening please help
1 Like
Please be more clear so we can understand you better.
2 Likes
This is the clearest I can be. I respawn at 0 WalkSpeed. I have no idea why. It also wont let me do keybinds, which means it won’t let me do… controls?
1 Like
any scripts or anything that could help us understand your problem better?
2 Likes
This is the only script that affects the control module, and it’s in starterplayerscripts
local camera = game.Workspace.CurrentCamera
local Tweenpart = game.Workspace.TweenPart
local TS = game:GetService("TweenService")
local player = game.Players.LocalPlayer
local PlayerScripts = player:WaitForChild("PlayerScripts")
local ControlModule = require(PlayerScripts:WaitForChild("PlayerModule"):WaitForChild("ControlModule"))
local tweeninginfo = TweenInfo.new(6,Enum.EasingStyle.Quad,Enum.EasingDirection.Out,0)
local Properties = {CFrame = Tweenpart.CFrame}
wait()
camera.CameraType = Enum.CameraType.Scriptable
local Tween = TS:Create(camera,tweeninginfo,Properties)
ControlModule:Disable()
camera.CFrame = CFrame.new(0, 30, 0) * CFrame.Angles(0, 30, 0)
Tween:Play()
player:WaitForChild("PlayerGui"):WaitForChild("UI"):WaitForChild("MainFrame"):WaitForChild("PlayButton").MouseButton1Click:connect(function()
Tween:Pause()
Tween:Destroy()
ControlModule:Enable()
camera.CameraType = Enum.CameraType.Custom
camera.CameraSubject = player.Character:WaitForChild("Humanoid")
end)
1 Like
Any Videos You could give to us?
2 Likes
Nevermind I just found some random script putting Humanoid.WalkSpeed = 0. False alarm
2 Likes
I would recommend you check that before making a new thread from next time
3 Likes