-- Credit Me or not local ReplicatedStorage = game:GetService("ReplicatedStorage") local event = ReplicatedStorage:FindFirstChild("NewEvents") local Misc = event:FindFirstChild("Misc") local director = Misc:FindFirstChild("IAmADirector") local say = { dialogue = "Hello World", -- Say Something duration = 0.1, -- Speed Dialogue appear text icon = "directorHappy", -- change it "directorHappy" or "directorAngry" if you want angry or happy face name = "director" -- custom name } if director:IsA("BindableEvent") then director:Fire(say) end