#hi, im looking for someone to help me with scripting throughout my journey.

1 messages · Page 1 of 1 (latest)

cobalt sable
#

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.)

twilit remnant
cobalt sable
# twilit remnant 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

twilit remnant
#

then, tell me what you both know and ill provide info

coral crescent
#

Yo im the other friend

cobalt sable
#

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

coral crescent
#

not all events though

twilit remnant
#

yk when to use WaitForChild and FindFirstChild?

coral crescent
#

only :Connect

cobalt sable
#

yeah

#

only to connect tho

#

we also know how to use Parent

twilit remnant
#

i mean

coral crescent
#

im going to give an example of how much i know through a code i made

twilit remnant
#

like

long heathBOT
#

studio** You are now Level 3! **studio

twilit remnant
#

when u clone somehting, do u use FindFirstChild or WaitForChild

coral crescent
#

we dont even know clone

#

unless you mean copying and pasting

cobalt sable
#

idk what it is but id say waitforchild

long heathBOT
#

studio** You are now Level 1! **studio

coral crescent
#
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

twilit remnant
twilit remnant
twilit remnant
cobalt sable
#

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

cobalt sable
#

oh thats nice, lowkey thought id be wrong

coral crescent
twilit remnant
#

what different stuff are used for and etc

cobalt sable
#

yeah sure

#

like right now?

coral crescent
#

please that would be great help