RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a image gui that appears on the creators body"
-- local script (StarterCharacterScripts) local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local torso = character:WaitForChild("UpperTorso") local billboardGui = Instance.new("BillboardGui", torso) billboardGui.Size = UDim2.new(0, 100, 0, 100) billboardGui.Adornee = torso local imageLabel = Instance.new("ImageLabel", billboardGui) imageLabel.Size = UDim2.new(1, 0, 1, 0) imageLabel.Image = "rbxassetid://YOUR_IMAGE_ID_HERE" -- Replace with your desired image asset ID imageLabel.BackgroundTransparency = 1