- 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.
- 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?
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?
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
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
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