Advertisement
escaper26

Roblox Jenga script

Apr 1st, 2020
5,431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.61 KB | None | 0 0
  1. --Roblox Stackables script made by escaper26 (on roblox)
  2. --Link of the game is: https://web.roblox.com/games/3905564303/Stackables?refPageId=e16b8d0b-d4bb-44bd-8ea8-2f04ce8de4f1
  3.  
  4.  
  5.  
  6. --The script is simple,
  7.  
  8.  
  9. local a=game.Players.LocalPlayer:GetMouse()
  10. a.KeyDown:connect(function(b)
  11. if b=="z"then
  12. if a.Target then
  13. local c=Instance.new("Model",game.Workspace)
  14. a.Target.Parent=c
  15. c.Parent=game.Players
  16. end
  17. end
  18. end)
  19.  
  20.  
  21. --Attach the script then when it is someone else's turn (their turn has to be before yours I think), spam delete every block, and BOOM, once they are done with their turn, the tower falls.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement