Advertisement
SheeityArtist

spinning frisk code

Feb 20th, 2016
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. function Update()
  2. Player.sprite.rotation = Player.sprite.rotation + 5 --Copy this into Update() in your encounter. Spins the player sprite.
  3. end
  4.  
  5. function EncounterStarting()
  6.     Player.name = "Frisk"
  7.     Player.sprite.color = {1,1,1} --Copy this into EncounterStarting() in your encounter. Gives the player sprite no colour tint.
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement