Delones
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 1703 |
|
|
| 21 Feb 2014 07:51 PM |
| Is it possible to give a player a tool, force them to equip it, and when they unequip it force them to equip it again until the tool is removed? |
|
|
| Report Abuse |
|
|
|
| 21 Feb 2014 07:54 PM |
tool = script.Parent while wait() do if tool.Parent == plr.Backpack then tool.Parent = plr.Character end end
Ull have to define plr of course.. |
|
|
| Report Abuse |
|
|
|
| 21 Feb 2014 07:55 PM |
| http://wiki.roblox.com/index.php?title=Deselected |
|
|
| Report Abuse |
|
|
Goulstem
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 7177 |
|
|
| 21 Feb 2014 07:56 PM |
derp = script.Parent if derp.Equipped == false then derp.Equipped = true else end
|
|
|
| Report Abuse |
|
|
|
| 21 Feb 2014 07:57 PM |
| This same thing has been asked b4 and the thing I just posted worked:) |
|
|
| Report Abuse |
|
|
Delones
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 1703 |
|
|
| 21 Feb 2014 07:59 PM |
so I could do tool = script.Parent repeat if tool.Parent == plr.Backpack then tool.Parent = plr.Character end until plr.Backpack.PlayerHasTool = false |
|
|
| Report Abuse |
|
|