#need help making a proximity prompted open gui thing

1 messages · Page 1 of 1 (latest)

red nacelle
#

so im making like a tip jar and i need it to be e to interact so it opens a gui so people could then donate

velvet raven
#

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

red nacelle