Safii
|
  |
| Joined: 21 Dec 2012 |
| Total Posts: 70 |
|
|
| 28 Feb 2013 06:10 PM |
I am looking to purchase the following:
A mode/round changer similar to the one daxter33 uses except this would be for a RPG/FPS I am working on. The script must come with modes (stated below) and a round changer / shuffler so it can go from one round to another RANDOMLY.
The following modes must come with the script
Juggernaut - 1 Player is randomly selected and put on 1 team against all the other players in a 1 vs rest elimination. Juggernaut would have 750 Health . If juggernaut kills all he wins, if juggernaut dies humans win. 10 minute timer, if no one wins announces tie game. If red/blue wins announces Red/Blue team wins! And all members on that team receive some cash.
Elimination - Team vs Team elimination everyone would be on either Red or Blue and each team would fight until 1 teams player(s) are remaining with a 10 minute timer.
Death Match- Team vs Team. Team with most kills at the end of 10 minutes would win the round.
Team Swap - If one team kills another teams member that member joins the team say a blue person kills a red. The red player that dies joins the Blue. Either team with most players at the end of the 10 minutes or first team with all players on it
Capture Points - Capture points laid around the map and you are required to stand on them for a amount of time and if get them to become your team colour. At the end of the ten minutes the team with the most of the 3 control points wins.
Capture the Flag - 2 Flag stands 1 red, 1 blue, goal is to get the other flag and take it back to your flag pole to score 1 point. Team with most points at the end wins.
Also, feel free to add more modes but these are ones i would suggest you make.
No, this is not free scripting. I am not the richest kid on roblox though. And I am willing to pay 500 robux however.
BUT, if you decide to code a leaderboard with Kills, Wipeouts, and Points with a nice shop (that has mroe then 1 page) that WORKS with the leaderboard (Points given/taken from leaderboard on kill/death) Leaderboard must have AUTO Save, and the points in total must not reduce when an item is sold from the GUI shop.
If you add the above in i will pay 700 robux.
HOWEVER, I am required to test the scripts before buying to make sure they work.
Message me if you are interested so I can send you a Nuke Town map Model I used. |
|
|
| Report Abuse |
|
|
12packkid
|
  |
| Joined: 24 Jun 2011 |
| Total Posts: 1418 |
|
|
| 28 Feb 2013 06:12 PM |
| You do realise - you're trying to get a scripter to copy Ozzypig's Juggernaut game, just with bonus rounds. |
|
|
| Report Abuse |
|
|
Safii
|
  |
| Joined: 21 Dec 2012 |
| Total Posts: 70 |
|
|
| 28 Feb 2013 06:14 PM |
| I haven't played his Juggernaut game. However, I did play Sword Fight Tournament and I enjoyed it. So I wanted to get something like that with guns. It might be interesting in my opinion but if it helps its ALSO a survive the disaster game with a slenderman running around trying to get you while you do the rounds :P |
|
|
| Report Abuse |
|
|
Rukiryo
|
  |
| Joined: 04 Sep 2009 |
| Total Posts: 1490 |
|
|
| 28 Feb 2013 06:24 PM |
This forum clearly says it is not for requests. However, I'd make this game for 1mil R$. I was paid 400k to make a decent shooter, so I would charge 1mil for this. Contact me if interested. |
|
|
| Report Abuse |
|
|
12packkid
|
  |
| Joined: 24 Jun 2011 |
| Total Posts: 1418 |
|
|
| 28 Feb 2013 06:24 PM |
| Ummm, a slenderman that chases people, 6 bonus rounds, a juggernaut with 750 health, an announcement gui, and a shop with guns. Alot of people I know can't do that. |
|
|
| Report Abuse |
|
|
Safii
|
  |
| Joined: 21 Dec 2012 |
| Total Posts: 70 |
|
|
| 28 Feb 2013 06:28 PM |
| the juggernaut round is a different round and there is no announcement gui just a notification when 1 round is over. |
|
|
| Report Abuse |
|
|
Safii
|
  |
| Joined: 21 Dec 2012 |
| Total Posts: 70 |
|
| |
|
|
| 28 Feb 2013 06:51 PM |
| This really isn't the place for these kinds of threads. This forum is for fixing code that isn't working, or asking how to do something. Not asking for random people to make you an entire game, which they probably won't even get profit for. |
|
|
| Report Abuse |
|
|
|
| 28 Feb 2013 08:02 PM |
500 for that?
Not a chance. |
|
|
| Report Abuse |
|
|
redlo123
|
  |
| Joined: 07 Feb 2013 |
| Total Posts: 231 |
|
|
| 28 Feb 2013 08:30 PM |
local msg = Instance.new("Message") local hnt = Instance.new("Hint") local players = Game.Players:getChildren() msg.Text = "Welcome to TheAwesomenessDude's Gun Fighting Tournament! The game will start soon!" local eventrunning =false
function CheckPl(Player) for i = 1, #players do if players >= 2 then msg.Text = "Get ready for a gun fighting round!" wait (5) msg.remove() local fr = Instance.new("IntValue") fr.Name = "FencingRound" fr.Value = 1 fr.Parent = players[i].Character local gun = game.Lighting.Gun:clone() gun.Parent = players[i].Backpack end end end
if #remaining >= 2 then eventrunning = true end local round = 1 for i = 1, #remaining do print(remaining[i]) end
while eventrunning do if #remaining >= 2 then local a = remaining[math.random(1, #remaining)] local b = remaining[math.random(1, #remaining)] while a == b do b = remaining[math.random(1, #remaining)] wait(0.1) end
if a.Character ~= nil then if a.Character.Humanoid.Health ~= 0 and a.Character:findFirstChild("gunRound") ~= nil then msg.Text = "" .. a.Name .. " has won the duel!" msg.Parent = game.Workspace wait (2) msg = nil end
if b.Character ~= nil then if b.Character.Humanoid.Health ~= 0 and b.Character:findFirstChild("gunRound") ~= nil then msg.Text = "" .. a.Name .. " has won the duel!" msg.Parent = game.Workspace wait (2) msg = nil end
player[i].Backpack:remove() -- here's only the BEGINNING OF YOUR SCRIPT! you need to make the rest, and also make sure that you debug it. peace redlo43
|
|
|
| Report Abuse |
|
|
redlo123
|
  |
| Joined: 07 Feb 2013 |
| Total Posts: 231 |
|
|
| 28 Feb 2013 08:31 PM |
--copy and paste this script instead
local msg = Instance.new("Message") local hnt = Instance.new("Hint") local players = Game.Players:getChildren() msg.Text = "Welcome to TheAwesomenessDude's Gun Fighting Tournament! The game will start soon!" local eventrunning =false
function CheckPl(Player) for i = 1, #players do if players >= 2 then msg.Text = "Get ready for a gun fighting round!" wait (5) msg.remove() local fr = Instance.new("IntValue") fr.Name = "gunRound" fr.Value = 1 fr.Parent = players[i].Character local gun = game.Lighting.Gun:clone() gun.Parent = players[i].Backpack end end end
if #remaining >= 2 then eventrunning = true end local round = 1 for i = 1, #remaining do print(remaining[i]) end
while eventrunning do if #remaining >= 2 then local a = remaining[math.random(1, #remaining)] local b = remaining[math.random(1, #remaining)] while a == b do b = remaining[math.random(1, #remaining)] wait(0.1) end
if a.Character ~= nil then if a.Character.Humanoid.Health ~= 0 and a.Character:findFirstChild("gunRound") ~= nil then msg.Text = "" .. a.Name .. " has won the duel!" msg.Parent = game.Workspace wait (2) msg = nil end
if b.Character ~= nil then if b.Character.Humanoid.Health ~= 0 and b.Character:findFirstChild("gunRound") ~= nil then msg.Text = "" .. a.Name .. " has won the duel!" msg.Parent = game.Workspace wait (2) msg = nil end
player[i].Backpack:remove() -- here's only the BEGINNING OF YOUR SCRIPT! you need to make the rest, and also make sure that you debug it. peace redlo43 |
|
|
| Report Abuse |
|
|
|
| 28 Feb 2013 08:42 PM |
| 500 robux is nowhere near reasonable for this and you shouldn't be posting this in this forum anyway. |
|
|
| Report Abuse |
|
|
redlo123
|
  |
| Joined: 07 Feb 2013 |
| Total Posts: 231 |
|
|
| 28 Feb 2013 08:46 PM |
| I don't like how I wasted my time making a script and I don't even know what's in his game yet XD |
|
|
| Report Abuse |
|
|
Safii
|
  |
| Joined: 21 Dec 2012 |
| Total Posts: 70 |
|
| |
|
|
| 28 Feb 2013 11:11 PM |
| Safi. This isn't the place to be looking for scripters. Please stop bumping. |
|
|
| Report Abuse |
|
|
|
| 01 Mar 2013 02:03 AM |
RED, thats a edited free model.
~«im gonna eat you ok»~ |
|
|
| Report Abuse |
|
|
awas3
|
  |
| Joined: 24 Oct 2010 |
| Total Posts: 2854 |
|
|
| 01 Mar 2013 06:51 AM |
| He doesnt deserve a free model, we arent his servants. Look itup yourself saf... |
|
|
| Report Abuse |
|
|
einsteinK
|
  |
| Joined: 22 May 2011 |
| Total Posts: 1015 |
|
|
| 01 Mar 2013 09:56 AM |
If you want to copy a game, just copy his scripts directly. Better than let someone else copy-write it -.- |
|
|
| Report Abuse |
|
|
|
| 01 Mar 2013 02:10 PM |
| Really people, do you have to be like that? I can make it, free, not that I have a way for you to pay me anyways, no BC. It might take a while for me to make it though because I've got a load of other projects at the moment, currently a TARDIS... Yeah. But I'll definitely try to do this. Sorry if it doesn't come out quite right. Of course you'd need to place the capture points yourself as I don't have the map(s). PM me anymore details. |
|
|
| Report Abuse |
|
|
|
| 01 Mar 2013 02:26 PM |
| Oh and I'm not sure I can do the leaderboard script, you'll have to get that separate from me. |
|
|
| Report Abuse |
|
|
Looah
|
  |
| Joined: 22 Feb 2013 |
| Total Posts: 922 |
|
|
| 01 Mar 2013 02:28 PM |
if I got a cent if someone made a thread like this I would've had exactly 74 cent. |
|
|
| Report Abuse |
|
|
coplox
|
  |
| Joined: 07 Jun 2008 |
| Total Posts: 3252 |
|
|
| 01 Mar 2013 02:31 PM |
http://www.roblox.com/Forum/ShowPost.aspx?PostID=90509786
He gets rejected within a few minutes here, then posts it on Scripters and gets even worse responses. |
|
|
| Report Abuse |
|
|