04-05-2011, 07:14 PM
(This post was last modified: 04-05-2011, 07:20 PM by Jacob__mybb_import1.)
Has anyone tried making slideshows or cutscenes in Buildism? You could do some cool things that way.
Here is a script that removes the character and centers the camera on the part of your choice:
[lua]
function playerAdded(object)
if object:isA("Character") then
object:remove()
game.Camera.FollowObject = game.World.Center
game.Camera.ScaleFactor = 7
end
end
link(game.World.ChildAdded, playerAdded)
[/lua]
Here is a script that removes the character and centers the camera on the part of your choice:
[lua]
function playerAdded(object)
if object:isA("Character") then
object:remove()
game.Camera.FollowObject = game.World.Center
game.Camera.ScaleFactor = 7
end
end
link(game.World.ChildAdded, playerAdded)
[/lua]