|
| 04 Apr 2014 05:38 PM |
| Hey guys i hate having to manually delete the messages in scripts and models anyone got an anti message script? |
|
|
| Report Abuse |
|
|
|
| 04 Apr 2014 05:43 PM |
function search(dir)
for _,v in next, dir do
if v:IsA("Message") or v:IsA("Hint") then v:Destroy() else search(v:GetChildren()) end
end
end
search(game.Workspace:GetChildren()) |
|
|
| Report Abuse |
|
|
|
| 04 Apr 2014 05:45 PM |
| Run this in the command bar in studio, then all of the messages will be gone, unless they are somewhere other than workspace and its descendants. Also, you should have it print something after the first search call, so you know when it's done. |
|
|
| Report Abuse |
|
|
|
| 04 Apr 2014 06:13 PM |
| Any way to make there no way to put a message in the workspace because i use the build insert tool in multiplayer? because you cant get the command bar in multiplayer ); |
|
|
| Report Abuse |
|
|