Roblox / Game API
Navigate and interact with Roblox game instances.
Overview
Core Functions
get_datamodel()
local datamodel = kinetic.roblox.get_datamodel()is_valid()
if kinetic.roblox.is_valid(addr) then
-- Instance is valid
endProperties
get_name()
local name = kinetic.roblox.get_name(addr)get_class_name()
get_parent()
Navigation
get_children()
find_first_child()
find_first_child_of_class()
Player/Character
get_character()
get_team()
Humanoid
get_health() / get_max_health()
Position
get_position()
Complete Example
Next Steps
Last updated