Here are some images of server/client:
Here is the client:
Here is the server:
Why is this happening? The BillboardGui is cloned out of ReplicatedStorage by a server script in serverScriptService.
Here are some images of server/client:
Here is the client:
Here is the server:
Why is this happening? The BillboardGui is cloned out of ReplicatedStorage by a server script in serverScriptService.
You are showing the gui on the client. Use a remote event.
Because the gui is only being created on the client with a local script? lol
it is cloned out of replicated storage using a server script in ServerScriptService
Some scripts would be nice to see for reference, preferably the ones that Clone the “AFK Gui”
local replicatedStorage = game:GetService("ReplicatedStorage")
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local Gui = replicatedStorage:WaitForChild("AFK"):Clone()
Gui.Parent = character:WaitForChild("Head")
end)
end)
You said a ServerScript
inside ServerScriptService
, correct?
It might have something to do with your BillboardGui
properties, perhaps?
Yes I did say that. I can’t think of any properties that would affect being able to see the GUI. I can play around with some stuff. One sec.