RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me an ultumate trolling gui"
-- local script local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") local frame = Instance.new("Frame") local text = Instance.new("TextLabel") gui.Name = "TrollingGUI" gui.Parent = player.PlayerGui frame.Name = "MainFrame" frame.Parent = gui frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0) frame.BorderSizePixel = 0 frame.Size = UDim2.new(0.5, 0, 0.5, 0) text.Name = "MainText" text.Parent = frame text.BackgroundColor3 = Color3.fromRGB(255, 255, 255) text.BackgroundTransparency = 1 text.Size = UDim2.new(1, 0, 1, 0) text.Font = Enum.Font.SourceSans text.Text = "You've been trolled!" text.TextColor3 = Color3.fromRGB(0, 0, 0) text.TextSize = 24 text.TextWrapped = true