|
| 07 Jan 2014 02:17 PM |
| By script, when I'm in the game. What script would I use to remove everyone's inventory, player list, and health? |
|
|
| Report Abuse |
|
|
DataStore
|
  |
| Joined: 07 Feb 2012 |
| Total Posts: 8540 |
|
|
| 07 Jan 2014 02:19 PM |
| The only way to do this is through the use of the "SetCoreGuiEnabled", however the method can only be used in a client-side script (LocalScript). There is no other way other than cloning the LocalScript, which disables everything, to every player (whether it be by use of a script, or StarterGui or StarterPack). |
|
|
| Report Abuse |
|
|
Madified
|
  |
| Joined: 19 Apr 2011 |
| Total Posts: 5292 |
|
| |
|
smiley599
|
  |
| Joined: 23 Jan 2010 |
| Total Posts: 21869 |
|
|
| 07 Jan 2014 02:21 PM |
game.StarterGui:SetCoreGuiEnabled(0,false) game.StarterGui:SetCoreGuiEnabled(1,false) game.StarterGui:SetCoreGuiEnabled(2,false)
Put that in a LocalScript in StarerGui. |
|
|
| Report Abuse |
|
|