Well, if you want advice, create a custom Scene class. In this Scene, you will just need to create sprites and windows, and then have them do whatever you want in this scene. Below your scene class, add:
begin
$scene = Scene_yourscene.new
$scen.main
end
So your code will look like:
class Scene_yourscene
# insert coding here
end
begin
$scene = Scene_yourscene.new
$scen.main
end
Now, if you are looking for how to make a scene, check the tutorials forum for that and if you have specific questions, you can ask them here.
-OR-
Elaborate on your request, tell me you want a request, and I can move this to the Script Request forum.