I have literally no idea how to script. I'd appreciate it if someone lends me a hand, thanks!
At: http://wiki.roblox.com/index.php?title=Special:RobloxLandingPage
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)
Youtube is a great place to learn how to script. (Only recommended for starters)
Its how I first started scripting.
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?