#how do i start a fighting game?
1 messages · Page 1 of 1 (latest)
yup 😭
** You are now Level 1! **
dont start your fighting game, you will give up
it will be mostly a waste of time unless you have a team
damn
if you're completely new try making smaller systems for it like m1s and abilities
try to get better and later on you'll see how bad ur old code is
by learning how to code
How do I even learn how tho 😔
youtube series from ppl such as alvinblox or brawldev, also roblox docs https://create.roblox.com/docs/reference/engine and lua docs https://www.lua.org/docs.html
note that this isn’t a fast process especially if you’re new to programming, in which case it’ll take you atleast a few months if you aren’t sinking hours a day into learning
gl
bro gave lua docs but not luau
luau docs can be found here: https://luau.org/getting-started/
luau is pretty much just a more optimized lua with a larger library, it's fine
i'm aware
luau is based off lua 5.1 with extra additions and smaller optimizations
and some things removed
but i mean we're talking about roblox rn
fair
there's zero reason to learn lua instead of luau if you're wanting to get into roblox since you can't really apply everything about lua into luau
yeah but they’re similar.
almost all the syntax is the same, you could learn lua and then learn luau, no biggie, but yeah for roblox js learn luau
yeah but it's a waste of time if you're solely caring about roblox and not actually programming in lua outside of it
yeah unfortunately not many places to use lua
ehhhh
speaking like you can program in luau without using any features of lua. a solid base in general lua is needed for luau
** You are now Level 14! **
i beg to differ
not really
not necessarily
yessecarily you need lua to code luau
you can learn luau on lua
luau is pretty much its own language, the only real similarity is the syntax
backend it's different
luau is an extension and modification of lua, without lua luau wouldn’t exist
yes
i was able to write lua perfectly fine after only using luau
what even is the point of arguing over this
why is this even an argument gang, if you're gonna help someone with roblox related things, point them towards the luau docs or even the roblox wiki, not the lua docs
yeah
cuz this guy thinks the lua docs isn’t a valid resource for learning luau if you have zero knowledge in either lol
i never said that
can we just please stop
i said he was asking to get into roblox
❓
so you should've just given him luau docs or even just ignored the luau docs and given him the wiki
you gave him the wiki tho so i'm not complaining about that
W ragebait
it's really not that big of a deal im out
average battlegrounds game code
”Select all squares with a bus stop in them”
bro
requiring hexadecimal
crazy work
_G spotted, execution scheduled in 30 days
imagine you want to require an asset so you convert the id to hexadecimal
😭 😭 😭 😭
big numbers fella
no but it's genius
optimization ✅
people under the age of like 13 or 14 will never be able to know that all it takes is a print statement to bypass their security
😭
dont solo, 100% of the time beginners will try to do everything but that only works if you're good in everything which i guarantee you you're not if you're new
local UIS = game:GetService("UserInputService")
local RS = game:GetService("ReplicatedStorage")
local M1Remote = RS:WaitForChild("M1Remote")
local debounce = false
UIS.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 and not debounce then
debounce = true
M1Remote:FireServer()
task.wait(0.4)
debounce = false
end
end)
guys is this ok
im going crazy trying to figure this out
i meant the rs thing

