View Single Post
  #2  
Old 08-27-2016, 04:21 PM
Kirko Kirko is offline
Registered Guest
Join Date: Dec 2014
Location: Texas
Posts: 61
Kirko has a spectacular aura aboutKirko has a spectacular aura about
This is one way of showing an image under tiles and yeah you need transparent tiles or you wont be able to see anything behind them

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
with (GUIContainer) {
    new 
GuiShowImgCtrl("Test") {
      
useownprofile true;
      
profile.modal false;
      
resize(00screenwidthscreenheight);
      
      
image "block.png";
      
zoom  50;
    }
  }

  
Test.pushtoback();

Reply With Quote