|
| 07 Aug 2013 12:01 AM |
while wait(10) do for i, player in pairs(game.Players:GetPlayers()) do for _,a in pairs(Workspace.ActiveParts:GetChildren()) do if string.lower(player.Name).."'s parts" == string.lower(a.Name) then for j,k in pairs(a:GetChildren()) do k:Destroy() end end end end end
i wanna add a message pop up on the screen for 3 seconds how would i do this? |
|
|
| Report Abuse |
|
|
ForceSky
|
  |
| Joined: 30 Jul 2012 |
| Total Posts: 2379 |
|
|
| 07 Aug 2013 06:16 AM |
| Add a message with desired text, wait(3), then destroy the message. |
|
|
| Report Abuse |
|
|
|
| 07 Aug 2013 10:35 AM |
local Message = Instance.new('Message', game.Workspace) Message.Text = "Change what you want text to say here!" wait(3) Message:Destroy()
|
|
|
| Report Abuse |
|
|