|
| 07 Nov 2011 04:20 PM |
ello... just askin if any one knew how to make it were wen u enter my game u lose an arm... reply
~littleAU999~ |
|
|
| Report Abuse |
|
|
NeonBlox
|
  |
| Joined: 19 Oct 2008 |
| Total Posts: 1462 |
|
|
| 07 Nov 2011 04:21 PM |
Why would you want to do that?
Also, you'd want to make them loose a arm on re-spawn probably. |
|
|
| Report Abuse |
|
|
|
| 07 Nov 2011 04:23 PM |
Normally, nobody would give you this script, but since it's so small, I'll make one.
local arms = {"Left Arm", "Right Arm"} game.Players.PlayerAdded:connect(function(pl) pl.CharacterAdded:connect(function(ch) local arm = ch[arms[math.random(#arms)]] arm:remove() end) end) |
|
|
| Report Abuse |
|
|
|
| 07 Nov 2011 04:48 PM |
srry i meant left arm so then Electric if i wanted to do that the script would look like this?:
local arms = {"Left Arm"} game.Players.PlayerAdded:connect(function(pl) pl.CharacterAdded:connect(function(ch) local arm = ch[arms[math.random(#arms)]] arm:remove() end) end)
is this right? |
|
|
| Report Abuse |
|
|
|
| 07 Nov 2011 04:52 PM |
| Yes, though now it has some extra code... Whatever, I don't feel like editing it, it still works. |
|
|
| Report Abuse |
|
|
| |
|