Jump to content

zxo pink

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by zxo pink

  1. thanks , btw my playermodel have the animations: idle walk walkback walkleft walkright run runback runleft runright walkcrouch walkcrouchback walkcrouchleft walkcrouchright jump death you know how i can make the basics one work? (run and jump)
  2. it give me an error: "attempt to index field 'world' (a nil value)" i hope you will be able to fix it
  3. were do i need to put this commend? in the FPSPlayer.lua script?
  4. i whan make a third person game but when i put a playermodel for the "FPSPlayer.lua" script i cant see the playermodel please help?
  5. hey im making third person game and i whan make fade in and fade out to my animation does it possible and how i do it?
  6. i have mp4 file and i dont know how to import it to leadwerks please help? (make the mp4 file be texture)
  7. i whan make a aim to my gun i have the animation but i dont know how to make the script i tried to make it like this: blindkey mouse 2 //right click sequence 3 run //aim animation please help
  8. you know how to add this picture to the the game? like: on player spawn add (material/somfing/somfing.tex) to 0,0 = top left. 0, context:GetWIdth() = top right (offscreen) 0, context:GetWidth() - image:GetWidth() = right side of image lines up with right side of screen
  9. zxo pink

    drawimage

    hi i whan to make a picture at the high right screen this picture: like when you see your ammo/health in shooter game (csgo,tf2,half life and more) please help
  10. hi i have this code: if TotalMoney==nil then TotalMoney=0 end function Script:Start() if TotalMoney==nil then TotalMoney=0 end Totalmoney=Totalmoney+1 end function Script:Release() Totalmoney=Totalmoney-1 end function Script:UpdateWorld() self.entity:Turn(0,1.0*Time:GetSpeed(),0,true) end function Script:Collision(entity, position, normal, speed) if entity.script then if type(entity.script.CollectMoney)=="function" then entity.script:CollectMoney() if self.sound then self.sound:Play() end self.entity:Hide() end end end function Script:Detach() if self.sound~=nil then self.sound:Release() self.sound=nil end end and my error is: attempt to perform arithmetic on global 'Totalmoney' (a nil value) can somone please help me
×
×
  • Create New...