Instance.new() won't work

game.Players.PlayerAdded:Connect(function(plr) 
	plr.CharacterAdded:Connect(function(char) 
		local Proximity = Instance.new("ProximityPrompt")
		Proximity.Parent = char
	end)
end)

Don’t use the parent argument of Instance.new, it will slow down your scripts.

2 Likes