Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
|
| 15 Jul 2014 04:07 PM |
Show a dialog, and it will be active automatically. Without clicking. How would I do that? No script, just some idea, or "Instructions". ~Tynexx |
|
|
| Report Abuse |
|
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
| |
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
| |
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
| |
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
|
| 15 Jul 2014 05:04 PM |
plssssss help. i am begging u 2 help me ~Tynexx |
|
|
| Report Abuse |
|
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
| |
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
|
| 15 Jul 2014 05:22 PM |
pls,pls,pls. .....bamp. ~Tynexx |
|
|
| Report Abuse |
|
|
128GB
|
  |
| Joined: 17 Apr 2014 |
| Total Posts: 8056 |
|
|
| 15 Jul 2014 05:25 PM |
Game:GetService("Chat"):Chat(Workspace.Player1.Head, "Hello!", "Red")
Valid colors; Red, Blue, Green |
|
|
| Report Abuse |
|
|
|
| 15 Jul 2014 05:27 PM |
game.Players.PlayerAdded:connect(function(player) local screen = Instance.new("ScreenGui",player.PlayerGui) local frame = Instance.new("Frame",screen) local text = Instance.new("TextLabel",frame) end)
active automatically.. only on join? |
|
|
| Report Abuse |
|
|
|
| 15 Jul 2014 05:33 PM |
Welcome to my game gui:
game.Players.PlayerAdded:connect(function(player) local screen = Instance.new("ScreenGui",player.PlayerGui) local frame = Instance.new("Frame",screen) frame.Size = UDim2.new(0,1500,0,900) frame.BackgroundColor3 = Color3.new(0/0/0/0) local text = Instance.new("TextLabel",frame) text.TextColor3 = Color3.new(1/0/0/0) text.BackgroundColor3 = Color3.new(0/0/0/0) text.BorderColor3 = Color3.new(1/0/0/0) text.BorderSizePixel = 3 text.Size = UDim2.new(0,800,0,100) text.Position = UDim2.new(0,300,0,0) text.Text = "Welcome to my game!" text.FontSize = "Size48" text.Font = "Legacy" end) |
|
|
| Report Abuse |
|
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
| |
|
|
| 15 Jul 2014 05:41 PM |
Or:
game.Players.PlayerAdded:connect(function(player) local screen = Instance.new("ScreenGui",player.PlayerGui) local frame = Instance.new("Frame",screen) frame.Size = UDim2.new(0,1500,0,900) frame.BackgroundColor3 = Color3.new(0/0/0/0) local text = Instance.new("TextLabel",frame) text.TextColor3 = Color3.new(1/0/0/0) text.BackgroundColor3 = Color3.new(0/0/0/0) text.BorderColor3 = Color3.new(1/0/0/0) text.BorderSizePixel = 3 text.Size = UDim2.new(0,800,0,100) text.Position = UDim2.new(0,300,0,0) text.Text = "Welcome to my game!" text.FontSize = "Size48" text.Font = "Legacy" local button = Instance.new("TextButton",frame) button.BackgroundColor3 = Color3.new(0/0/0/0) button.BorderColor3 = Color3.new(0/0/0/0) button.Position = UDim2.new(0,500,0,600) button.Size = UDim2.new(0,400,0,100) button.TextColor3 = Color3.new(1/0/0/0) button.FontSize = "Size48" button.Font = "Legacy" button.Text = "This will close in: 5" wait(1) button.Text = "This will close in: 4" wait(1) button.Text = "This will close in: 3" wait(1) button.Text = "This will close in: 2" wait(1) button.Text = "This will close in: 1" wait(1) screen:Destroy()
end)
|
|
|
| Report Abuse |
|
|