|
I am making a new FPS survival game that takes place in a city made by me. (If you have an idea for the name put it below)
I will be using templates for the roads right now and they won't be detailed. Once I have completed the buildings (which will all be accessible) I will create my own roads. As I said, every building will be accessible, all buildings will have detailed rooms. There will be office buildings with items that may be found there, as well as apartments, schools, hospitals, police departments, etc...
If you would like to help me by giving me the following scripts I will put your name in the description in a "People Who Helped" section.
-Random player spawns
-How to spawn items in certain places
-Leaderboard(with money, kills, and gold) Gold will be used for items you sell that you find in the city.
-Safezone Area (if that is with scripting)
-Guns
-Anything else that you think will help
Want to stay up to date with the game? Look at it here:
http://www.roblox.com/games/344124016/No-Name-Decided
If you want to help me make the game faster by hiring people. Donate or simply join the game for a second to give me a ticket. Which still helps. I will be putting up a VIP game pass that I will decide what will be in it later, but will cost minimum right now and a lot later in my updates.
Thank you for reading this post,
Clark |
|
|
|
|
|
-Random player spawns
-How to spawn items in certain places
-Leaderboard(with money, kills, and gold) Gold will be used for items you sell that you find in the city.
-Safezone Area (if that is with scripting)
-Guns
-Anything else that you think will help
So basicaly you want us to make the game 4 u |
|
|
No, you don't have to. I would just really appreciate it, I have no clue how to do most of anything but I am gonna try to learn. |
|
|
Good for you,
Let me help you out
First you want a good base a solid base on what you know how to do,
Im guessing you like map making, Start there build the map. Put markers where events happen so you can script or do whatever with them later
Build the map first.
Focus on everything else later. |
|
|
make sure you are not related AR or deadzone |
|
|
Never played Deadzone but I am trying to stay as far away from AR as possible but still make it fun. |
|
|
Building it now, right now I am starting with a small 3x3 area for buildings. Middle area will be for a park and it will spread out with smaller buildings and eventually to individual houses.
I will hopefully get vehicles and maybe air vehicles if I can figure out how to. |
|
|
nophvJoin Date: 2014-05-31 Post Count: 1519 |
-Request-
Have an objective for the game and know what you need to do.
o3o |
|
|
Any ideas for that? I was just planning on making it a survival game that you can base build inside of many buildings, collect loot and survive by yourself or with friends. |
|
|
-Random player spawns
-How to spawn items in certain places
-Leaderboard(with money, kills, and gold) Gold will be used for items you sell that you find in the city.
-Safezone Area (if that is with scripting)
-Guns
litterally deadzone in a box |
|
|
You're going to need something completely unique to make the game a success, oh and please don't have a safezone, it makes it extremely difficult since you can just go behind cover mid gunfight and flee to safety.
+19935 im probably the crappiest trader in the world |
|
|
It's pretty much DayZ. I have never played Deadzone so I wouldn't know. |
|
|
|
|
|
Okay, to spawn items in certain places;
local spawns = {game.Workspace.itemSpawn1, game.Workspace.itemSpawn2} --You get what I mean
local items = {game.Lighting.Item1, game.Lighting.Item2}
while wait() do
local item = items[math.random(1,#items)]
local clone = item:Clone()
clone.Parent = workspace
local spawn = spawns[math.random(1,#spawns)]
clone:MoveTo(spawn.Position)
wait(100) --This is the wait time
end |
|
|
|
Putting your name in the description. |
|
|
|
|
One thing to say,
WTF???
When I joined your game it didn't seem like a freaking survival game, it felt like ro-citizens -_-
I advise you make it seem like a sort of broken down society feel. |
|