|
| 30 Jan 2015 04:51 PM |
| Like when you :H on admin a black bar appears, but how do you get rid of it if it stays forever in studio? thanks |
|
|
| Report Abuse |
|
|
iGotRekt
|
  |
| Joined: 23 Jan 2014 |
| Total Posts: 831 |
|
|
| 30 Jan 2015 04:52 PM |
Locate the hint.
hint:Destroy() |
|
|
| Report Abuse |
|
|
|
| 30 Jan 2015 05:17 PM |
| go in command bar and type: game.Workspace.HintName:Remove() |
|
|
| Report Abuse |
|
|
| |
|
|
| 30 Jan 2015 05:30 PM |
| Just find it by searching through the explorer and delete it with the Delete key on your keyboard. |
|
|
| Report Abuse |
|
|
| |
|
eLunate
|
  |
| Joined: 29 Jul 2014 |
| Total Posts: 13268 |
|
|
| 30 Jan 2015 05:34 PM |
Stick this in your command bar
function dsh(l) for k,v in next,l:GetChildren() do if v:IsA("Hint") then v:Destroy() end dsh(v) end end dsh(workspace) |
|
|
| Report Abuse |
|
|
| |
|