WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
mdr
27
Cai
Ouvrir dans l'éditeur
Publiez votre code
0
HTML
Copy
local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") Frame.Parent = ScreenGui Frame.Size = UDim2.new(0, 400, 0, 200) Frame.Position = UDim2.new(0.5, -200, 0.5, -100) Frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) TextLabel.Parent = Frame TextLabel.Size = UDim2.new(1, 0, 1, 0) TextLabel.Text = "Welcome to my Roblox Web GUI!" TextLabel.TextColor3 = Color3.new(1,1,1) TextLabel.BackgroundTransparency = 1 TextLabel.TextScaled = true
CSS
Copy
<!-- Replace with your CSS Code (Leave empty if not needed) -->
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */