Please give feedback on this module

GuiButtonTweenModule - Easily create button hover and click tweens with this module - Resources / Community Resources - Developer Forum | Roblox

1 Like
  1. Cool module, but it is also just a simple thing that could be created in a few lines. Not sure most people would find it useful.
  2. This module is not made by you?? The first few lines of the module literally say “Original by Validark” and “Modifications by pobammer”. Neither of those people are you.

the signal and the janitor module was not made by me but the rest is made by me

you cant create a system like this in a few lines because im using a complex hovering clicking system

but still thanks for the feedback

It is not a complex ‘hovering, clicking’ system, it’s just an extended version of what you can do in a few lines

so u can do this in a few lines?

Yes, it can be done in a few lines

Can u do that rn? :earth_africa: :earth_africa: :earth_africa: :earth_africa: :earth_africa: :earth_africa: :earth_africa: :earth_africa: :earth_africa: :earth_africa: :earth_africa:

I think its impossible that this is possible in a few lines

just you wait and see buddy, not sure why you think that

i can do a hovering clicking system in a few lines but it wouldnt be better than the module

What did I do to you that you’re angry now? :sob: :sob: :sob:

im not angry? what makes you think that
literally what in that post offended you so much

Yes, this has the exact same functionality but with no sounds (You can also add that in the same line)

local button = game.Players.LocalPlayer.PlayerGui._GUI.TextButton
local tweenService = game:GetService("TweenService")
local uiScale = Instance.new("UIScale", button)
button.AnchorPoint = Vector2.new(0.5, 0.5)

button.MouseEnter:Connect(function() tweenService:Create(uiScale, TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), {Scale = 1.2}):Play() end)
button.MouseLeave:Connect(function() tweenService:Create(uiScale, TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), {Scale = 1}):Play() end)
button.MouseButton1Click:Connect(function() tweenService:Create(uiScale, TweenInfo.new(0.1, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out), {Scale = 1.1}):Play() wait(0.1) tweenService:Create(uiScale, TweenInfo.new(0.1, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out), {Scale = 1}):Play() end)

That’s not the same system i am not using MouseButton1Click im using MouseButton1Down and InputEnded (in userinputservice)

I meant toxic :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds: :face_in_clouds:

I don’t understand why you guys don’t find it usefull

I find it very sad because i just wanted to make an usefull module that everyone could use :smiling_face_with_tear: :smiling_face_with_tear: :smiling_face_with_tear: :smiling_face_with_tear: :smiling_face_with_tear: :smiling_face_with_tear:

Just like both me and @bobertus00 have said, the same thing can be done in only a few lines. I love to make modules for the community to use as well, but it takes me a good while to think of a great idea that would be useful for everyone.
Keep brainstorming, I’m sure you’ll come up with a great idea at some point that could be more useful for people. Good luck

1 Like