#i need to activate effects idk how to make a script for that:( pls help
6 messages · Page 1 of 1 (latest)
I just need that the ProximityPrompt in the same model enables the fire effect
do a research about proximity prompt. it has some built-in events so when you press let’s say E and after 2 seconds it’s done selecting then you need to clone the visual effects it’s pretty simple stuff
so for example something like this:
prompt.enabled:connect(function()
local clonedvfx = firevfx:Clone()
clonedvfx.Parent = workspace
clonedvfx.Position = Vector3.new(20,5,10)
end)