My goal is to be able to see the nameplate on the server.
I had an old nameplate that used to work until (what I believe happened) roblox changed the way humanoids worked with replication. I am currently attempting to fix the nameplate that was working earlier.
If I set the parent of a BillboardGui to the character from the server, the BillboardGui is only visible on the client (not the server).
If I set the parent of BillboardGui to workspace and set the Adornee to the character, it is only visible on the client (not the server).
If I set the parent/adornee of a BillboardGui to the HumanoidRootPart/Head, the same thing happens.
I feel like I’ve tried everything - any help would be nice.
Server Script:
local char = player.Character
local nameplate = game.ServerStorage.Nameplate:Clone()
nameplate.Parent = char
--nameplate.PlayerToHideFrom = player
nameplate.PlayerName.Text = player.Name
nameplate.PlayerTitle.Text = "Tester"