|
| 07 Jun 2014 01:49 PM |
I still want it to kill you and award points, but I want it to make your body disappear.
local pointgiver = script.Parent pointgiver.Touched:connect(function(pointgiver) local g = game.Players:GetPlayerFromCharacter(pointgiver.Parent) if pointgiver:IsA("Part") and (g) then pps = game:GetService("PointsService") if pps:GetAwardablePoints() >= 1 then pps:AwardPoints(g.userId, 1) end end end) |
|
|
| Report Abuse |
|
|
| |
|
YeahNick
|
  |
| Joined: 28 Feb 2009 |
| Total Posts: 2536 |
|
|
| 08 Jun 2014 03:51 AM |
| What do you mean with 'disappear'? Do you want the body to become invisible or to delete the body (like put it into game.lighting)? |
|
|
| Report Abuse |
|
|
|
| 08 Jun 2014 04:04 AM |
Delete the body, I didn't know how to put it. xD Any help is appreciated.
|
|
|
| Report Abuse |
|
|
YeahNick
|
  |
| Joined: 28 Feb 2009 |
| Total Posts: 2536 |
|
|
| 08 Jun 2014 04:11 AM |
pointgiver.Parent.Parent = game.Lighting
This puts it into lighting, basically just makes it disappear. |
|
|
| Report Abuse |
|
|
| |
|
| |
|