SHOW:
|
|
- or go back to the newest paste.
| 1 | -- Objects | |
| 2 | - | local plr = game.Players.SebTDZ500 |
| 2 | + | local plr = owner |
| 3 | local Screen = Instance.new("ScreenGui")
| |
| 4 | - | local Frame = Instance.new("Frame")
|
| 4 | + | local Title = Instance.new("TextLabel")
|
| 5 | - | local Title = Instance.new("TextButton")
|
| 5 | + | |
| 6 | - | local Commands = Instance.new("Frame")
|
| 6 | + | |
| 7 | Screen.Parent = plr.PlayerGui | |
| 8 | - | local b1 = Instance.new("TextButton")
|
| 8 | + | |
| 9 | - | local b2 = Instance.new("TextButton")
|
| 9 | + | |
| 10 | Title.Parent = Screen | |
| 11 | Title.Text = "" | |
| 12 | Title.Font = Enum.Font.SciFi | |
| 13 | Title.TextSize = 35 | |
| 14 | Title.BackgroundColor3 = Color3.new(0, 0, 200) | |
| 15 | - | Frame.Parent = Screen |
| 15 | + | |
| 16 | - | Frame.BackgroundColor3 = Color3.new(0, 200, 200) |
| 16 | + | |
| 17 | - | Frame.BackgroundTransparency = 0 |
| 17 | + | |
| 18 | - | Frame.Position = UDim2.new(0.25, 0, 0, 0) |
| 18 | + | |
| 19 | - | Frame.Size = UDim2.new(0.5, 0, 0.5, 0) |
| 19 | + | |
| 20 | - | Frame.BorderSizePixel = 5 |
| 20 | + | |
| 21 | - | Frame.Active = false |
| 21 | + | local nt = "Hello World" |
| 22 | for i = 1, #nt do | |
| 23 | - | Title.Parent = Frame |
| 23 | + | Title.Text = nt:sub(1, i) |
| 24 | - | Title.Text = "Server Controls" |
| 24 | + | wait(0.075) |
| 25 | end |