Hey im trying to find a way to only find models with humanoids in workspace
(players), but i can't seem to find a function for that, or get all character models from game:GetService("Players")
, i know that every player in that list has a property called Character, but i dont know how to find the Character of everyone else, to clone into only one model (lighting), can someone help me?
for _,plr in pairs(game.Players:GetPlayers()) do plr.Character:Clone().Parent = game.Lighting.Model end
Is a simple way of doing it. Goes through all the players, clones their characters and moves it to a model in Lighting.