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

I need basic Tips for scripting? [closed]

Asked by 10 years ago

Hey I am just needing basic scripts... Like a fade out GUI script... Or somthing like how to make a Lock first person script... Just the basic things for LUA scripting.

0
wiki.roblox.com :) nate890 495 — 10y
0
Basicly, I have just started scripting so I am wondering if you could help me I am wanting to start a project but I probably wont get anywhere without help. TheGodsofGreenEarth 0 — 10y

Closed as off-topic by evaera

This question has been closed by our community as being off-topic from ROBLOX Lua Scripting.

Why was this question closed?

1 answer

Log in to vote
1
Answered by
Teeter11 281 Moderation Voter
10 years ago

Fade out GUI :

for i = 1,50 do -- be sure to put this inside your gui
    wait()
    script.Parent.BackgroundTransparency = script.Parent.BackgroundTransparency + .02 
-- subtracting will result non black adding will result in black
end

LockFirstPerson : (LOCALSCRIPT)

game.Players.LocalPlayer.CameraType = "LockFirstPerson"
0
Thanks man you are a lifesaver! TheGodsofGreenEarth 0 — 10y
Ad