So I am currently making a game called walk to heaven but the issue is that I can’t trigger events after touching / passing a wall
I am using just using a Local script for the event to fire and a script to get the event
just a simple script
but I could not get the second script due I lost it somewhere ( I forgot to save my game )
but I made a quick script
--Properties
local NPC = script.Parent.Parent
local CC = Enum.ChatColor.White
local function Chat(message: string, color)
game:GetService("Chat"):Chat(NPC.Head, message, CC)
end
event.OnServerEvent:Connect(function ()
Chat("MAD GUY RAWR")
end)