How do i make a proximity prompt that is visible to other players but not the local player?

hey, im creating a game like altitorture where you pair other by a proximity prompt that is in the other player humanoidrootpart i created the proximityprompt inside the player hrp but idk how to make that the player cant see its own proximityprompt but can see other players proximityprompt.

1 Like

Use a LocalScript to disable all proximity prompts in their Character’s Humanoid

local Character = script.Parent
local Player = game.Players.LocalPlayer
local Root = Character:WaitForChild("HumanoidRootPart")

Root.ChildAdded:Connect(function(proximityPrompt:ProximityPrompt)
	if proximityPrompt:IsA("ProximityPrompt") then
		proximityPrompt.Enabled = false
	end
end)

Put this script in StarterCharacterScripts