ive started scripting about 5 days ago or a week smt like that and im only the beginner series. ive learned events, playerstats, events etc but im not that good at it yet. what im looking for is someone i can ask for help actively that can explain it to me thoroughly. im almost about to move on to the more advanced part but i have some things to learn still, such as being able to use all the beginner stuff ive learnt pretty smoothly (with that i mean understanding the code and knowing when to use it when encountering a problem.)
#hi, im looking for someone to help me with scripting throughout my journey.
1 messages · Page 1 of 1 (latest)
what kind of stuff are u interested inlearning?
everything and anything, its me and a friend trying to learn how to script and were basically tryna go from a little baby that knows nothing but only making noises to the baby learning how to say his first word, then into a sentence and then to an adult knowing everything basically
then, tell me what you both know and ill provide info
Yo im the other friend
uhh we know about, events, findfirstchild and waitforchild and stuff like that, leaderstats, loops and kinda tables?
also functions
and ofc the basic stuff like variables and data types
not all events though
yk when to use WaitForChild and FindFirstChild?
only :Connect
i mean
im going to give an example of how much i know through a code i made
like
** You are now Level 3! **
when u clone somehting, do u use FindFirstChild or WaitForChild
idk what it is but id say waitforchild
** You are now Level 1! **
local part = script.Parent
part.BrickColor = BrickColor.new("Really red")
part.Material = Enum.Material.Neon
game.Players.PlayerAdded:Connect(function(player)
local leaderstats = Instance.new("Folder")
leaderstats.Name = "leaderstats"
leaderstats.Parent = player
death = Instance.new("IntValue")
death.Name = "Deaths"
death.Value = 0
death.Parent = leaderstats
end)
local died = false
part.Touched:Connect(function(otherPart)
local humanoid = otherPart.Parent:FindFirstChild("Humanoid")
if humanoid and not died then
died = true
humanoid.Health = 0
death.Value += 1
task.wait(3)
died = false
end
end)
here is some code that i made
basically this
why
you need to check the humanoid health
because u gotta wait for the "clone" to become a physical object in the game 😭 i dont know how to expain it that well
correct me if im wrong
u are right
oh thats nice, lowkey thought id be wrong
we both are still basic learners trying to do more than cheap parler tricks
then, if u want, i can join a vc and show u 2 why stuff get used and so on
what different stuff are used for and etc
please that would be great help