when i play test the game i can not move my character at all . for some reason i dont know why. i even made a new game that has ZERO scripts and the issue is still there, pretty sure its a bug in roblox studio.
this issue have started when i logged in with 2 accounts on roblox studio. before that it wasnt a problem.
and i really need to have these two accounts logged in, i cant log out, but if there is not other solution i guess i should do it anyways.
i dont think its the same as my problem, because his problem is caused by a script that has an error, mine is a problem in roblox studio in of its self, also there is no error, i think the last resort is to uninstall roblox studio and then reinstall it and ill tell you if it worked
did you try pressing \ ? because pressing that button disables the movement and selects the buttons on the screen with a blue border, kinda like when you pres Tab in google and moving it by pressing Enter to select different buttons. pressing it again will make things return to normal.
I JUST FOUND THE SOLUTION, i made a plugin that auto anchors every part added, and it was anchoring the player character. althought he problem is solved but the weird thing is that this issue was there before i made the plugin but now it worked
i just fixed the plugin by checking if the game is running or not. if it is then dont run the plugin and if its not then run the plugin
did it by using this script for anyone curious:
local RS = game:GetService("RunService")
if not RS:IsRunning() then
print('in studio')
else
print('in game')
end