How do I select my character without using a LocalScript but by using a normal Script, I need this so I can select the HumanoidRootPart and get the position of it. The script is in Workspace btw.
get the name of the player somehow first, then simply select it.
the character model is server-sided, so both local and normal scripts can access it
local playermodel = game.Workspace:FindFirstChild(NAME)
then for the root's position:
local pos = playermodel.PrimaryPart.CFrame
put a .p at the end of the code mentioned above if you would prefer a vector3 or put .Position
I don't get why you don't want to use a localscript but ok.
LocalScript:
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
ServerScript:
game.Players.PlayerAdded:connect(function(player) player.Character.HumanoidRootPart.CFrame end