Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

Where do I learn how to script? [closed]

Asked by 10 years ago

I have literally no idea how to script. I'd appreciate it if someone lends me a hand, thanks!

0
Ask all your questions here lol NecoBoss 194 — 10y

Closed as Too Broad by User#2

This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.

Why was this question closed?

3 answers

Log in to vote
0
Answered by 10 years ago

At: http://wiki.roblox.com/index.php?title=Special:RobloxLandingPage

Ad
Log in to vote
0
Answered by 10 years ago

The best place to learn how to script is by reading the scripting book at http://wiki.roblox.com/index.php?title=Scripting_Book/Chapter_1#Chapter_1 and also to know if your script is working right you open the output by clicking view then output window and here is a script for you.It will make a leaderboard in your game.

function onPlayerEntered(newPlayer)

    local stats = Instance.new("IntValue")
    stats.Name = "leaderstats"

    local cash = Instance.new("IntValue")
    cash.Name = "Score"
    cash.Value = 0

    cash.Parent = stats
    stats.Parent = newPlayer
end

game.Players.ChildAdded:connect(onPlayerEntered)
Log in to vote
0
Answered by 10 years ago

Youtube is a great place to learn how to script. (Only recommended for starters)

Its how I first started scripting.