#2 Questions

9 messages · Page 1 of 1 (latest)

jade jewel
#
  1. Why won't this code work for a starter menu when you first join?

"lua

function Exit()
game.StarterGui.ScreenGui.Frame.Visible = false
end

game.StarterGui.ScreenGui.Frame.TextButton.MouseButton1Down:Connect(Exit)

/"

  1. What code would I use if I were to make a button to invite someone to my discord, like when they click the button it sends them to discord or if they dont have it, their browser? I want to add an option like that for it.

Any help appreciated!!!

next grail
#

The do

#

local frame = script.Parent. Frame

local textbutton = frame:getchildre("TexyButton")

textbutton.MouseButton1Click:Connect(function()
frame. Visible = false
end)

#

This should be work @jade jewel

#

About your second just put your discord link in ur game bio it's the easiest way

bronze fossil
#

About the 2nd, I don't think you can do that because roblox is not allowing users to open links via roblox games

jade jewel
#

Thanks