Tabletop Simulator

Tabletop Simulator

93 ratings
Tiny Tableflip
2
   
Award
Favorite
Favorited
Unfavorite
Game Category: Original Games
Number of Players: 1, 2, 3, 4
Assets: Scripting
Tags: Misc, 4+
File Size
Posted
Updated
6.909 KB
6 Jan, 2017 @ 1:16pm
13 Feb, 2017 @ 11:56am
8 Change Notes ( view )

Subscribe to download
Tiny Tableflip

Description
For minor anger issues

[www.paypal.com]

LUA tutorial using this as an example
http://chry.me/index.php/2017/01/07/tiny-tableflip-tabletop-simulator/
17 Comments
Bez 15 Jun, 2021 @ 6:26am 
Finally, a way to express my anger without ruining the game.
Gashadokoro 2 Jan, 2021 @ 4:22am 
I hate it when you find the perfect mod other than one thing. I've been looking for a tiny table mod for AGES and found this one, The only one I've been able to find with 5 days of looking, and this one is almost perfect aside from the ability to flip it. I don't know if you'll even see this, but would it be possible to upload a mod of just the table for me to use to hold up other props?

P.S. The tiny flip is adorable, I love it so much.
ulia  [author] 10 Mar, 2018 @ 5:55pm 
Funny that it got archived. Thanks for posting it, maybe one day the guy who wanted it will come back and make good use of it.
Soul 10 Mar, 2018 @ 5:05pm 
Just stumbled across this. Sometimes it's hard to lose something forever on the Internet :)

This page was only partially archived on archive.org , the CSS is missing and the first 2 images are missing, but the text is there, and a couple images were saved. https://web.archive.org/web/20170215012501/http://chry.me/index.php/2017/01/07/tiny-tableflip-tabletop-simulator/
ulia  [author] 12 Nov, 2017 @ 5:44pm 
that went down with the wordpress build so it's gone forever, sorry
Lonewolf 12 Nov, 2017 @ 5:18pm 
@chry can I ask a small favor. Can you put up the link for the LUA tutorial again please ?
Flolania 20 Jul, 2017 @ 10:41am 
I think the button index(s) do not allow holes.. ie they step down because I think TTS does it in the back end.
dzikakulka 18 Jul, 2017 @ 12:19pm 
Mmm, perhaps. But I'm curious about (i-1) instead of btn.index. Literally curious, like do other buttons indexes (indices?) step down if we remove one from the middle?
Flolania 17 Jul, 2017 @ 5:34pm 
Probably because self.clearbuttons was broken a while ago and it was the workaround till they fixed it.
dzikakulka 12 Jul, 2017 @ 3:28am 
Is there some secret meaning attached to the

function delBtn()
btns=self.getButtons()
if(btns~=nil)then
for i,btn in pairs(btns)do
self.removeButton(i-1)
end
end
end

function? Why not self.clearButtons() ? Why remove buttons based on some arbitrary number index?