#need help making a proximity prompted open gui thing
1 messages · Page 1 of 1 (latest)
local player=game.Players.LocalPlayer
local DonationPart=workspace.DonationPart--replace this with your part or proximity prompt name
local DonationFrame=player.PlayerGui.ScreenGui.Frame--replace this with your Frame name
DonationPart.ProximityPrompt.Triggered:Connect(function()
DonationFrame.Visible=true
end)
also put this in local scripts and preferably in starterGui
im going to try this out