|
| 13 Aug 2016 04:35 PM |
| Like the ones that you step on? |
|
|
| Report Abuse |
|
RobuxLife
|
  |
| Joined: 19 Sep 2012 |
| Total Posts: 13336 |
|
|
| 13 Aug 2016 04:42 PM |
Since there is a "face" decal in every player's characters head, remove that with a .Touched event.
local part = script.Parent local debounce = false
part.Touched:connect(function(touched) local player = game.Players:GetPlayerFromCharacter(touched.Parent) if player and debounce == false then debounce = true player.Character.Head.face:Destroy() wait(1) debounce = false end end)
|
|
|
| Report Abuse |
|
| |