specialmesh
Functions to get property information from specialmesh.
Example
local woprkspace = game:get_service("Workspace")
local random_specialmesh = workspace:find_first_child_class("SpecialMesh")
local mesh = random_specialmesh:get_meshid()
local texture = random_specialmesh:get_textureid()
print(mesh)
print(texture)Last updated