Beam that is attached to player becomes invisible when going into first person

This only started happening recently, i didnt change anything related to the beam

1 Like

is the beam a part or an actual effect? all parts as far as i know go invisible when the player goes into first person as long as it is parented inside the character.

1 Like

This is an intentional change by roblox

2 Likes

you’re right. i changed the beams parent and its back to normal now

Anything parented to a character will become invisible when the player switches to first-person mode.

You can write a script to change the local transparency whenever the player is in first person, or you can parent it to something else.

You can do something like this:

local part = nil -- Add your part here
part.LocalTransparencyModifier = 0

part.Changed:Connect(function(property)
	if property == "LocalTransparencyModifier" then
		part.LocalTransparencyModifier = 0
	end
end)
4 Likes

change the category of this topic to #help-and-feedback

roblox did literally make a post telling people that this feature has been recently added. Just follow @xalwaleedx 's solution.