如何在 Roblox 中制作这些看起来 "hint" 的东西?
How do I make these "hint" looking things in Roblox?
我正在制作 Roblox 游戏,并试图让这些东西看起来像提示,只是它们位于屏幕的右下角,而且要小得多。你是怎么做这些的:
我认为这是一个通知。您可以通过 StarterGui:SetCore.
访问它
game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Obby", Text = "+300 Coins"})
https://developer.roblox.com/en-us/api-reference/function/StarterGui/SetCore
我正在制作 Roblox 游戏,并试图让这些东西看起来像提示,只是它们位于屏幕的右下角,而且要小得多。你是怎么做这些的:
我认为这是一个通知。您可以通过 StarterGui:SetCore.
访问它game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Obby", Text = "+300 Coins"})
https://developer.roblox.com/en-us/api-reference/function/StarterGui/SetCore