Why wont this script work?

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.

You need to use a remote event not a bindable event to communicate between client and server. Otherwise it looks fine to me.

1 Like