I was looking through roblox’s player controller and found that it uses context action service and Humanoid:Move() in order to move the player character, i looked up the documentation but it only mentions what the function is, moving the character in a given vector3 direction but i haven’t been able to find the code of the Humanoid:Move() function, is it publicly available or just kept under the wraps?
1 Like
Hi @Mezuras, it is awaliable to Move players Chracter without the ContextActionService just fir example use ir try to use:
local Players = game:GetService("Players")
local Part = workspace.TestPart -- rename "TestPart" to your Part Name
local TriggeredButtonInStarterGui = game:GetService("StarterGui"):WaitForChild("ScreenGui"):FindFirstChild("TextButton")
local function MovePlayerCharacterToGivingObject()
if Players.LocalPlayer then
Player.Humanoid:MoveTo(Part)
end
end
TriggeredButtonInStarterGui.MouseButton1Click:Connect(MovePlayerCharacterToGivingObject)
Maybe
1 Like
Perhaps i was not clear in my original post, but what i wanted is the code inside the Humanoid:Move() function; function body, so far in the documentation i only found function signature of Humanoid:Move() but not its body
The Humanoid:MoveTo(Vector3)
function is handled in a Roblox core script, which means it cannot be accessed, read, or modified by users.
I see, thanks for the info.
char limit…