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

Can Somebody Help Me Fix This?

Asked by
ImfaoXD 158
9 years ago

Guys I Need Your Help. I'm Trying To Make An Eyes Blink Script That Works When A Player Pick A Morph.

Can You Guys Help Me Add The Function?

local = lighting.script.Parent

while true do

1 eye1.Transparency = 0 2 eye2.Transparency = 0 3 wait(.15) 4

5 eye1.Transparency = 1 6 eye2.Transparency = 1 7 wait(1.8) end

1 answer

Log in to vote
1
Answered by 9 years ago

First off, capitalization count's in Lua, that mean's if you did parent(which you did) instead of Parent, it won't work. Secondly, you did local ligting.script.parent, You would do local Lighting = script.Parent. Third, you added a un-needed end unless you didn't post some part of your code here like while true do(which you can do while wait() do instead of adding a wait after). Anyway's, here is your script fixed, I won't go into to much detail on the transparency and stuff as it's pretty self explanatory.

1local ligting = script.Parent -- Fixed
2local eye1 = ligting.eye1 -- From your script, this look's proper
3local eye2 = ligting.eye2 -- From your script, this look's proper
4eye1.Transparency = 0
5eye2.Transparency = 0
6wait(10)
7eye1.Transparency = 1
8eye2.Transparency = 1

Here is a looped version of it, if you want it.

01while wait() do -- Loop
02    local ligting = script.Parent -- Fixed
03    local eye1 = ligting.eye1 -- From your script, this look's proper
04    local eye2 = ligting.eye2 -- From your script, this look's proper
05    eye1.Transparency = 0
06    eye2.Transparency = 0
07    wait(10)
08    eye1.Transparency = 1
09    eye2.Transparency = 1
10end -- End the loop
Ad

Answer this question