Proximity Prompt not showing for a player

So, every player has a proximity prompt in their torso, however I would like it so that the LocalPlayer doesnt see their own proximity prompt from their Torso, they can only see others

heres the script I have now, this is a server script

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(chr)
		local pp = Instance.new("ProximityPrompt")
		pp.Parent = chr:WaitForChild("Torso")
	end)
end)

You can add a LocalScript to disable the player’s proximity prompt

local Player = game:GetService ("Players").LocalPlayer

Player.CharacterAdded:Connect (function (character)
	local torso = character:WaitForChild ("Torso")
	local proximityPrompt = torso:WaitForChild ("ProximityPrompt")
	
	proximityPrompt.Enabled = false
end)
1 Like