Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local redlight = script.Parent.RedLight
- local orangelight = script.Parent.OrangeLight
- local greenlight = script.Parent.GreenLight
- local redpart = script.Parent.RedPart
- local greenpart = script.Parent.GreenPart
- while true do
- redlight.Material = "Neon"
- greenlight.Material = "SmoothPlastic"
- redpart.Position = Vector3.new(-283.05, 8.15, 36.75) -- ใส่ตำแหน่งRedPartของคุณ
- greenpart.Position = Vector3.new(-283.05, -8.35, 36.75) -- ใส่ตำแหน่งGreenPartของคุณ
- wait(10)
- orangelight.Material = "Neon"
- redlight.Material = "SmoothPlastic"
- wait(3)
- greenlight.Material = "Neon"
- orangelight.Material = "SmoothPlastic"
- redpart.Position = Vector3.new(-283.05, -8.35, 36.75) -- ใส่ตำแหน่งGreenPartจากบรรทัด11
- greenpart.Position = Vector3.new(-283.05, 8.15, 36.75)-- ใส่ตำแหน่งRedPartจากบรรทัด10
- wait(10)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement