Basic Button Not Working

I have been trying to add a button, but the iphone stimulator goes black. I have also not filled out the function, but I think the button should still appear. Here is the code I’ve been using:

local ui = require(“ui”)

local buttonHandler = function(event)
end

local button1 = ui.newButton{
default = “buttonPurple”,
over = “buttonPurpleOver”,
onEvent = buttonHandler,
text = “Play”,
id = “play”,
size = 20,
emboss = true
}

Also, in the terminal output it says: module ‘ui’ not found:resource (ui.lu) does not exist in archive.
What does this mean? [import]uid: 30901 topic_id: 5723 reply_id: 305723[/import]

it means you haven’t put ui.lua in your folder

find it in the included samples, properly under the “Interface” folder [import]uid: 6645 topic_id: 5723 reply_id: 19634[/import]