I want a billboard gui to pop up when I get close to a part. Any references I can use? thanks
You can use the following: http://wiki.roblox.com/index.php?title=Magnitude
You can check the distance between the part and the player's torso, etc...
Once you create a Billboard Gui uncheck the "Visible", so it disappears and place in StarterGui.
Then try something like this-
local part= script.Parent part.Touched:connect(function(hit) local H= hit.Parent:FindFirstChild('Humanoid') if H then local player= game.Players:GetPlayerFromCharacter(hit.Parent) player.PlayerGui.(name of Gui).Visible= true end end)
Closed as Not Constructive by hiimgoodpack, lukeb50, and abnotaddable
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?