BillboardClone.Parent = Head
this seems to have a red line where = is
BillboardClone.Parent = Head
this seems to have a red line where = is
forgot to add two ends try it now.
And also dont forget to add your GroupId.
You forgot to add your groupid to the local variable on line 9 and also please copy my new code that I’ve edited.
ah sorry, it didnt show up that you edited it.
ok! i dont see any errors ill test it out now
You also should probably change the
BillboardClone.TextLabel
to path to your TextLabel
i think something didnt go right
You can use my old script to automatically show rank based off of group rank. It shows everyones rank and if they aren’t in the group by giving them a Guest Rank. That requires you to create a second billboardGUI though. Let me know if you have any questions
– Keep this script in ServerScriptStorage
– Store Your BillboardGUIs in serverstorage
– Change the Names to match mine or edit the script to match yourslocal groupId = 4759895 – Change it to your ID
game.Players.PlayerAdded:Connect(function(player)
if player:IsInGroup(groupId) == true then
player.CharacterAdded:Connect(function(characterMember)
local RankName = player:GetRoleInGroup(groupId)
local MemberTagBillBoard = game.ServerStorage.BillBoards.MemberGui:Clone()
MemberTagBillBoard.Parent = characterMember.Head
local TextLabel = MemberTagBillBoard.TextLabel
TextLabel.Text = RankName
end)
else
player.CharacterAdded:Connect(function(characterGuest)
local GuestTagBillBoard = game.ServerStorage.BillBoards.GuestGui:Clone()
GuestTagBillBoard.Parent = characterGuest.Head
end)
end
end)
Can you please show me the output?
there doesnt seem to be anything in the output
Did you test the Billboard GUI beforehand on a roblox head? You have to mess around with the properties
BillboardGUI:
TextLabel:
Maybe cloning it into the Character, and using BillboardGui.Adornee = Character.Head
.
Can you please ScreenShot the output and your BillboardGui scheme.
Does not make sense since its parented to the Character Head.
ill check let me unfilter my anti cheat
what should i be looking for?
It’s okay just send me screenshot of the output and schema of the Billboard gui in explorer tab.
and this is what i got