Here is what I have:
function onTouch(hit) workspace.Head["READ ME"].Disabled = false -- How do I make this a local function? end
To create a local function you just add the "local" indentifier before the function's name, this way:
local function yourFunction() end