RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"how do u create a sign"
-- You can create a sign using a part and a SurfaceGui with a TextLabel. Here's an example: -- Create a part for the sign local signPart = Instance.new("Part") signPart.Name = "Sign" signPart.Size = Vector3.new(2, 3, 0.2) signPart.Anchored = true signPart.Position = Vector3.new(0, 1.5, 0) signPart.Parent = workspace -- Create a SurfaceGui for the sign local signGui = Instance.new("SurfaceGui") signGui.Name = "SignGui" signGui.Face = Enum.NormalId.Front signGui.Parent = signPart -- Create a TextLabel for the sign local signText = Instance.new("TextLabel") signText.Name = "SignText" signText.Size = UDim2.new(1, 0, 1, 0) signText.TextScaled = true signText.Text = "Welcome to my game!" signText.Parent = signGui -- This will create a sign with the text "Welcome to my game!" in the workspace. You can adjust the position and size of the sign as needed.