function MouseHover() script.Parent.Position = UDim2.new(0.5, 0, 0.5, 0) end game.StarterGui.ScreenGui.Frame3.slideopen.MouseEnter:connect(MouseHover)
That's what I have so far..
local slideopen = script.Parent function mouseenter() slideopen:TweenPosition(UDim2.new(0.05, 0, 0.5, 0), "Out", "Linear", 0.5) end function mouseleave() slideopen:TweenPosition(UDim2.new(0, 0, 0.5, 0), "Out", "Linear", 0.5) end slideopen.MouseEnter:Connect(mouseenter) slideopen.MouseLeave:Connect(mouseleave)
if this worked accept answer! :)
Closed as Non-Descriptive by abnotaddable, PyccknnXakep, lukeb50, and DanzLua
This question has been closed because its title or content does not adequately describe the problem you are trying to solve.
Please ensure that your question pertains to your actual problem, rather than your attempted solution. That is, you were trying to solve problem X, and you thought solution Y would work, but instead of asking about X when you ran into trouble, you asked about Y.
Why was this question closed?