|
| 07 Aug 2011 08:24 PM |
print("LinkedLeaderboard script version 5.00 loaded")
stands = {} CTF_mode = false
function onHumanoidDied(humanoid, player) local stats = player:findFirstChild("leaderstats") if stats ~= nil then local deaths = stats:findFirstChild("Wipeouts") deaths.Value = deaths.Value + 1
-- do short dance to try and find the killer
local killer = getKillerOfHumanoidIfStillInGame(humanoid)
handleKillCount(humanoid, player) end end
function onPlayerRespawn(property, player) -- need to connect to new humanoid if property == "Character" and player.Character ~= nil then local humanoid = player.Character.Humanoid local p = player local h = humanoid humanoid.Died:connect(function() onHumanoidDied(h, p) end ) end end
function getKillerOfHumanoidIfStillInGame(humanoid) -- returns the player object that killed this humanoid -- returns nil if the killer is no longer in the game
-- check for kill tag on humanoid - may be more than one - todo: deal with this local tag = humanoid:findFirstChild("creator")
-- find player with name on tag if tag ~= nil then local killer = tag.Value if killer.Parent ~= nil then -- killer still in game return killer end end
return nil end
function handleKillCount(humanoid, player) local killer = getKillerOfHumanoidIfStillInGame(humanoid) if killer ~= nil then local stats = killer:findFirstChild("leaderstats") if stats ~= nil then local kills = stats:findFirstChild("KOs") if killer ~= player then kills.Value = kills.Value + 1 money.Value = money.Value + 10 :connect(function() Gui.KillGui.Visible = true wait(2) Gui.KillGui.Visible = false end) else kills.Value = kills.Value - 1 end end end
(ITS NOT THE FULL SCRIPT) |
|
|
| Report Abuse |
|
|
aboy5643
|
  |
| Joined: 08 Oct 2010 |
| Total Posts: 5458 |
|
|
| 07 Aug 2011 08:24 PM |
It's a free model??
~My graphic card is a crayon's box. - Spectrumw ~ |
|
|
| Report Abuse |
|
|
|
| 07 Aug 2011 08:25 PM |
IT'S IN THE WRONG FORUM, THAT'S WHAT'S WRONG.
~diducwutididthar~ |
|
|
| Report Abuse |
|
|
MicroUser
|
  |
| Joined: 29 Mar 2009 |
| Total Posts: 3601 |
|
|
| 07 Aug 2011 08:46 PM |
| Don't hear these nubcaiks, continue posting. You know what? Spam this forum until they fix it for you! Always works. |
|
|
| Report Abuse |
|
|
xSIXx
|
  |
| Joined: 06 Aug 2010 |
| Total Posts: 9202 |
|
| |
|
|
| 07 Aug 2011 09:23 PM |
I wonder too: you gave no output, you aren't providing the whole script, and your aren't competent enough to do anything whatsoever.
This is also the wrong place for SH. There's a forum CALLED SH, so you might want to start there. |
|
|
| Report Abuse |
|
|
|
| 07 Aug 2011 09:53 PM |
| YEAH SPAM THIS FORUM UNTIL YOU GET RESULTS! |
|
|
| Report Abuse |
|
|