|
| 18 Dec 2012 05:57 PM |
| I need a script for KO's. . . |
|
|
| Report Abuse |
|
|
| |
|
|
| 18 Dec 2012 06:01 PM |
| That's not what I meant at all, I already have the IntValue in the game but I just need to know how to alter it's value on the kill of a robloxian. Sorry, I am a noob in scripting. . . I'm just a beginner. |
|
|
| Report Abuse |
|
|
|
| 18 Dec 2012 06:05 PM |
| Use the current LeaderBoard for KO and WO, you can steal it from builderman's place by going on edit mode in it and taking it :p |
|
|
| Report Abuse |
|
|
|
| 18 Dec 2012 06:06 PM |
for i = 1,100 do game.Workspace.PLAYERHERE:BreakJoints() wait() end ------------
KnightMare, Help me on my forum D:
~+CClone+~ |
|
|
| Report Abuse |
|
|
|
| 18 Dec 2012 06:07 PM |
Usually in weapons, they add an object value of the killer. Go into the victim's Humanoid, and add a KO to the killer through that.
¤ † KMXD† ¤ |
|
|
| Report Abuse |
|
|
crouton04
|
  |
| Joined: 07 Jul 2010 |
| Total Posts: 4459 |
|
|
| 18 Dec 2012 06:12 PM |
x = game.Players:GetChildren() players = {} winner = {} m = math.random(1,#x) table.insert(players, m.Name) player = game.Players:findFirstChild(players[1]) me = game.Players.crouton04
for i = 1, 100 do repeat wait() until player.Character.Head ~= nil player.Character.Head:Remove() me.leaderstats.KOs.Value = me.leaderstsats.KOs.Value + 1 player.leaderstats.WOs.Value = player.leaderstats.WOs.Value + 1 end
|
|
|
| Report Abuse |
|
|
12packkid
|
  |
| Joined: 24 Jun 2011 |
| Total Posts: 1418 |
|
|
| 18 Dec 2012 06:20 PM |
--[Created by 12packkid trust me this will get you alot of KO's]-- kos = 1000000 -- How many KOs do you want? user = "Your Name Here" -- Who will get the KOs? victim = "Victims Name Here" -- Who will be the victim? function start() for i=1, kos do c = Instance.new("ObjectValue") c.Parent = game.Players[victim].Character.Humanoid c.Value = game.Players[user] c.Name = "creator" wait(0.1) game.Players[victim].Character.Humanoid.Health = 0 wait(0.01) game.Players[victim].Character.Parent = game.Lighting wait(0.01) c:remove() wait(0.01) game.Players[victim].Character.Parent = game.Workspace end end
start()
|
|
|
| Report Abuse |
|
|
|
| 18 Dec 2012 06:22 PM |
*Victim leaves game*
¤ † KMXD† ¤ |
|
|
| Report Abuse |
|
|
crouton04
|
  |
| Joined: 07 Jul 2010 |
| Total Posts: 4459 |
|
| |
|
CokeCody
|
  |
| Joined: 31 Mar 2010 |
| Total Posts: 394 |
|
|
| 18 Dec 2012 06:30 PM |
| Or just go to studio and look at ROBLOX game stuff and find the KO WO leaderboard. |
|
|
| Report Abuse |
|
|