Advertisement
Anukun_Lucifer

AITrafficScript

Apr 1st, 2023
1,079
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.94 KB | Gaming | 0 0
  1. local redlight = script.Parent.RedLight
  2. local orangelight = script.Parent.OrangeLight
  3. local greenlight = script.Parent.GreenLight
  4. local redpart = script.Parent.RedPart
  5. local greenpart = script.Parent.GreenPart
  6.  
  7. while true do
  8.     redlight.Material = "Neon"
  9.     greenlight.Material = "SmoothPlastic"
  10.     redpart.Position = Vector3.new(-283.05, 8.15, 36.75) -- ใส่ตำแหน่งRedPartของคุณ
  11.     greenpart.Position = Vector3.new(-283.05, -8.35, 36.75) -- ใส่ตำแหน่งGreenPartของคุณ
  12.     wait(10)
  13.     orangelight.Material = "Neon"
  14.     redlight.Material = "SmoothPlastic"
  15.     wait(3)
  16.     greenlight.Material = "Neon"
  17.     orangelight.Material = "SmoothPlastic"
  18.     redpart.Position = Vector3.new(-283.05, -8.35, 36.75) -- ใส่ตำแหน่งGreenPartจากบรรทัด11
  19.     greenpart.Position = Vector3.new(-283.05, 8.15, 36.75)-- ใส่ตำแหน่งRedPartจากบรรทัด10
  20.     wait(10)
  21. end
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement