I am new to LUA and I don't really know where to start

im new to scripting so what should I start with building?

4 Likes
1 Like

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:

i started with watching youtube Alvin_Blox how to script series here is his channel. –

–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 :slight_smile: 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