Text button MouseButton1Click not working

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear! I want to make a gui slider

  2. What is the issue? Include screenshots / videos if possible! I think I made a silly mistake somewhere, but I have a textbutton in the slider frame and a script which listens for the click event, but it doesnt fire somehow. Here is the script im using:

local mouse = game.Players.LocalPlayer:GetMouse()
script.Parent.MouseButton1Click:Connect(function() -- this doesnt fire
	repeat script.Parent.Position = Vector2.new(mouse.X, script.Parent.Position.Y) until script.Parent.MouseButton1Up
end)
  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub? I tried debugging it and looked for solutions in the forum

Here is the placement of the elements in the gui:
image

Shouldn’t you use MouseButton1Down?

2 Likes