RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a text button that lets you choose a button"
-- local script local textButton = script.Parent local player = game:GetService("Players").LocalPlayer local function chooseButton() -- Add the code for the action you want to perform when the button is clicked -- For example, you can change the player's walk speed, teleport them, etc. player.Character.Humanoid.WalkSpeed = 30 end textButton.MouseButton1Click:Connect(chooseButton)