Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to make an after-effect or part appear on someone's screen, but not on the others'?

Asked by 7 years ago

I would like to start expirimenting with creating personal settings for a game, like for example enabling after-effects for people who's PCs can handle them, or an indicating part to help a specific player, but other players can't see them/it.

Thanks in advance!

0
Many of the post processing effects are already disabled by default to players with a low graphical setting, such as blur, bloom, and sunrays. Color correction is always active. Read this for more info on each of the settings: http://blog.roblox.com/2016/05/a-whole-new-world-roblox-adds-post-effects-and-anti-aliasing/ DarkSideKyp 50 — 7y

1 answer

Log in to vote
1
Answered by 7 years ago

In order for post effects to be visible for only one person, you must put it in CurrentCamera.


In order for parts to be visible by one person, you have to create Local Parts;

local bin=Instance.new("Camera",workspace)
local localPart=Instance.new("Part",bin)
Ad

Answer this question