kailenJoin Date: 2007-09-18 Post Count: 5074 |
I'll pay whatever you want me to pay, looking for whoever offers the lowest, this is what I'm looking for:
A SIMPLE script, it's super easy, because I do script a bit, that does this:
There are 3 teams, Allies, Raiders, and Defenders.
What this script needs to do is count the number of Knockouts on each team, and whichever team reaches 400 Knockouts first, the script will make a shout saying, "___ has reached 400 Knockouts and has won!"
It also needs to add Allies and Defenders Knockouts together. |
|
|
kailenJoin Date: 2007-09-18 Post Count: 5074 |
Hey. |
|
kailenJoin Date: 2007-09-18 Post Count: 5074 |
dddddddddd |
|
ehern11Join Date: 2011-04-23 Post Count: 1541 |
gaim dot plrs get childrenz
if plrz dot teem = bricolurdotnew yellow hi
then
shout pls leave this team has won u bobiiiz noobs |
|
kailenJoin Date: 2007-09-18 Post Count: 5074 |
^
That has nothing to do with the KO quantity. |
|
KodranJoin Date: 2013-08-15 Post Count: 5330 |
I'm offering it for 100,000. |
|
UncleTazJoin Date: 2009-08-19 Post Count: 12795 |
My deal is better than Kodrans..
80,000 + 10x the starter fee which is 10k |
|
UncleTazJoin Date: 2009-08-19 Post Count: 12795 |
My deal is better than Kodrans.
70,000 + 10x the starting fee which is 10^3 |
|
UncleTazJoin Date: 2009-08-19 Post Count: 12795 |
Wth ?
I thought it told my post was floodchecked... Then I rewrote it... Ugh, stupid floodcheck sorry for the spam -_-' |
|
KodranJoin Date: 2013-08-15 Post Count: 5330 |
Honestly, I'd do it for 77,526. Lowest I go though. |
|
|
It's a simple script it should cost 1k-5k i can get you some one to do it for that cheap @Kailen. |
|
ehern11Join Date: 2011-04-23 Post Count: 1541 |
yes it does, sir, you just have no scripting knowledge |
|
KodranJoin Date: 2013-08-15 Post Count: 5330 |
I'd honestly do it for r$750
kailin msg me if you'd pay that |
|
|
Sorry
already have the R and money sign for my keyboard
I am missing the percent sign so if u could offer that instead... |
|
ehern11Join Date: 2011-04-23 Post Count: 1541 |
har har youre too funny ^ |
|
kailenJoin Date: 2007-09-18 Post Count: 5074 |
d2222 |
|
|
KEVEKEV77Join Date: 2009-03-12 Post Count: 6961 |
um.... do the teams have KO values?
if so.....
h = game:GetService("Teams");
team1 = h.urfirstteamAllensorwahtever--change to first team
team2 = h.ursecondteam
team3 = h.urthirdteam
Spawn(function()
while wait() do
local winner = false;
local teamname = "";
if team1.KOS >= 400 then
winner = true;
local teamname = team1.Name
end
if team2.KOS >= 400 then
winner = true;
local teamname = team2.Name
end
if team3.KOS >= 400 then
winner = true;
local teamname = team3.Name
end
end
if winner == true then
m = Instance.new("Message", game.Workspace)
m.Text = teamname.." has won!";
end
end)
make sure their is a value in each team named KOS |
|
|