What are you working on currently? (2020)

Some renders, what you see in the images below are compatible with roblox.


53 Likes

Just eager to share what I have experimented.

3 Likes

Looking nice, reminds me of battlefield 4!

sir, we’re detecting a massive object emerging from hyperspace

2020-02-11_15-36-28

41 Likes

Me and my scripter are currently working on a American Revolutionary War themed PVP game.
It’s my first big project, and I have high hopes for it’s success!

3 Likes

I like it a lot, it has some nice detail and a good choice of font.

I don’t know what the effect is called, but it jumbles the text and then puts it back,
https://gyazo.com/3e2f3da2bb8f211230f7a842a3f8617f
Here’s the script:

Text = "This is a test string" --Text for effect
CharacterSet = {"a","b","c","d","e","f","g","h","i", --Characters that will be used for effect
"j","k","l","m","n","o","p","q","r","s","t","u",
"v","w","x","y","z","@","#","$","%"}

math.randomseed(os.time()) --Change the seed for the random function
CopyString = Text --Copy for later
for i = 0,5 do --Jumbles the text for effect
	local RandomCharacters = ""
	for i = 0, string.len(CopyString) do
		RandomCharacters = RandomCharacters .. CharacterSet[math.random(#CharacterSet)]
	end
	Text = RandomCharacters
	print(Text)
	wait(0.1)
end

for i = 0, string.len(CopyString) do --Restores the text back to normal
	Text = CopyString:sub(0,i)
	for _ = 0, (string.len(CopyString)-string.len(Text)-1) do
		local RLetter = CharacterSet[math.random(#CharacterSet)]
		Text = Text .. RLetter
	end
	wait(0.1)
	print(Text)
end

print(Text) --Finished Text
32 Likes

Dutch Mat’54 class train, decided to finish it after 2 years of slacking…

21 Likes

Here’s a cool sushi restaurant that I was paid to make a while back. I forgot all about it. It’s just a pretty cool creation.

42 Likes

Japanese Restaurant

28 Likes

I’m just got into developer community about 2 months now, and I have been learn a lot from the other developers. But that is not enough for me, and I will continue learning to be a better developer.

5 Likes

Woah dude. Imo the hand bobbing isn’t correlating with walking very much, looks overly done, but the game looks absolutely sick bro. Keep it up :slight_smile:

1 Like

man ur donut looks way better than the one I did :smiley:

lol that reminda me of star wars you can make like a live event or something nice work! :smiley:

1 Like

https://gyazo.com/96043601e9a7646c371aaf98fa27e2ad

mm yes barrel sparks

16 Likes

Realistic tiles, anyone? NO blender involved.

57 Likes

that looks like a union nightmare with a beautiful outcome

9 Likes

Freaking unions, yes! :disappointed:

5 Likes

Been working hard on a new gamemode for Vampire Hunters 3 called ‘Lockdown’, which involves securing the building and stopping oncoming vampires from freeing their master Vlad from the coffin.

This has meant for each of the maps currently in my game I’ve had to place in spawnpoints and paths for the AI to follow manually, like this:


Vampires will swing and damage objects in front of them, including doors and windows, as well as barricades. To help them get through awkward spaces I’ve programmed in where they should crouch and jump.
image

20 Likes

This is awesome and impressive but saying no blender involved is usually just saying “no efficiency involved your pc will cry”

I’d recommend learning Blender for sophisticated things like this so you can control the outcome of your polygon count(but I’m sure I’m not the first to tell you this)

1 Like