Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I give a player a Gui when they get near a certain radius?

Asked by 6 years ago

I have an invisible part that triggers when a player touches it. here is my method

1function onTouch(Hit)
2hum = Hit.Parent:FindFirstChild("humanoid")
3if hum ~= nil then
4--here is where the code gets executed
5end
6end
7 
8script.Parent.Touched:Connect(onTouch)

However, I cannot figure out the part where you transfer the parent of the Gui from serverstorage to PlayerGui. I even do not know if I should use localscript or regular script.

0
since it is stored in server storage you would use a serverscript Donut792 216 — 6y
0
near a certain radius, not really..... its more near a part... greatneil80 2647 — 6y

1 answer

Log in to vote
1
Answered by
Donut792 216 Moderation Voter
6 years ago

off the top of my head im pretty sure this should work

01function onTouch(Hit)
02hum = Hit.Parent:FindFirstChild("humanoid")
03if hum ~= nil then
04local clone = game.ServerStorage.NameOfGui:Clone() -- clone the gui
05local player = game.Players:GetPlayerFromCharacter(Hit.Parent) -- grab player
06clone.Parent = player.PlayerGui -- clone into playergui
07end
08end
09 
10script.Parent.Touched:Connect(onTouch)
Ad

Answer this question