I need to find an object with 1 space for a name, " ". Obviously I can't do the method of finding it by
game.Workspace. .Humanoid.Health = 80
Is there another way to do this (besides changing the name)?
P.S. The name has to be blank because it is part of a humanoid and I want the humanoid's name to be blank.
game.Workspace:FindFirstChild(" ").Humanoid.Health = 80
You can use the find first child method or, you can try this next code.
game.Workspace[" "].Humanoid.Health = 80
Try this one;
ws=game.Workspace:GetChildren() b=game.Workspace for i=1, #ws do if ws[i].Name == "" then b=ws[i] end end --Your code here, use b to identify them.