Im trying to make a part where when you touch it it fires a event but it doesnt seem to work here are the scripts.
Local script:
event.Event:Connect(function()
for i = 1, #story4 do
story.Text = string.sub(story4,1,i)
task.wait(Time)
end
end)
Server script:
part.Touched:Connect(function()
event:Fire()
end)
Yes i am using a bindable event.