im new to scripting so what should I start with building?
4 Likes
RFL890
(RFL890)
March 23, 2021, 8:59pm
#3
Great resource, really helped me learn
There’s plenty of guides on the Developer Forum that cover how you can start learning. Here’s what I found from a quick search:
Lua Scripting Starter Guide
Author: @DarkSinisterPVP
Helper(s): @Supersaiyan122
Note: This post has been greatly altered from its original form to enhance the quality of the material. I am still in the process of altering it, so please be patient.
Author’s Note
Picking up programming and learning it for the first time works just like any other hobby–art, music, sports, photography, etc.–although, it may be difficult to know where to start as a beginner, especially if you’ve never had exper…
Hello!
Something I see a lot, is that often times people who are new to scripting, and are just getting into it, and want to learn it, sometimes have a hard time progressing at first without someone to help push them forward a bit. I think that the first little bit is the absolute hardest part of learning to script, and so, I’d like to try and suggest some of the ways new scripters can learn completely on their own. Scripting can be super fun, sort of like a puzzle, its not something th…
i started with watching youtube Alvin_Blox how to script series here is his channel. –
VIDEO
–gamepass script
local gamepass = --gaamepass Id
game.Players.PlayerAdded:Connect(function(player)
if (service:UserOwnsGamePassAsync(player.UserId, gamepass) then
–do whatever
end
1 Like
also what’s easy is making gamepass script also look at the Roblox Creator Documentation website
I’ve also started out from alvinblox too probably the best teacher
sometimes I learn stuff myself like :WaitForChild(arg1, arg2)
1 Like
local part = script.Parent
local function changeGears(part,NewProperty)
script.Parent.Transparency = NewProperty
end
while true do
changeGears(script.Parent,1)
wait(1)
changeGears(script.Parent,0.5)
wait(1)
changeGears(script.Parent,0)
end
that’s my script
it only runs transparency at 1 and .5
1 Like