Step 1 [LIGHT]
Add a Point Light to a Part.
Step 2
Add a Script to the Part.
Step 3
In the Script write the following:
while true do
script.Parent.PointLight.Enabled = true
wait(0.5)
script.Parent.PointLight.Enabled = false
wait(0.5)
end
You can change the “(0.5)” to any amount of seconds you want.
Step 4 [ROPE]
At the top of the screen, go to MODEL tab and on the righter side where it says Constraints select the little arrow pointing down at the top left button of the Constraints section. There you will select Rope.
You will then select the part you want to attach it to, as well as the Part which the light is at, which will connect the 2 parts with the rope.
Make sure to have your Light Part not Anchored so that the light part can be moving around freely on the rope as it would in real life. (Can do so by selecting the part and unselecting “Anchored” in Properties)
Extra
If you want to make it look nicer, you can modify the script however you like, you can play around with numbers however you like and make as many as you want different combinations.
while true do
script.Parent.PointLight.Enabled = true
wait(1)
script.Parent.PointLight.Enabled = false
wait(0.3)
script.Parent.PointLight.Enabled = true
wait(0.7)
script.Parent.PointLight.Enabled = false
wait(0.2)
script.Parent.PointLight.Enabled = true
wait(3)
script.Parent.PointLight.Enabled = false
wait(0.1)
script.Parent.PointLight.Enabled = true
wait(0.7)
script.Parent.PointLight.Enabled = false
wait(0.2)
end
ENJOY!