Player opacity

Is it possible to set a players opacity?

Hey to change the player visibility, what you need to do is follow the steps Below:

  1. Get the Player
  2. use ":SetVisibility(true/false)"[add false if u need to make it invisible else put true to make it visible]
    Below is an Example of making the player invisible when they join!
Game.playerJoinedEvent:Connect(function(player)
  Task.Wait()
  player:SetVisibility(false)
end)

Hope it Clears! And dont forget to ask me, if need any help :smiley: !

Yeah, that's visibility though, I am talking about opacity.

For example:

50% opacity

Sorry! I don't think it is possible to set opacity of player!