this is how you are making me feel, @KrimsonWoIf :
(just didn’t want to ping TheRealWayMan [post 40])
this is how you are making me feel, @KrimsonWoIf :
(just didn’t want to ping TheRealWayMan [post 40])
There is not wrong with autoscalers as long as you test it in different resolutions at least.
Ok, how were we pose to know that you didn’t mean to possibly profit of us and unexpecting people knowing that you pretty much stole IP.
It is also EXTREMELY scummy to do all the actions, tarnishing the AutoScale brand by saying your better even though if someone were to use this plugin it would be in combination with AutoScale Lite. Then remove all references that @WinnersTakesAll stated.
Then remove it as we can all see, Just please next time you make something don’t steal from other people as obvious as you did here. Please do better in your future work and dont be scummy like how you we’re here.
Okay I’ve changed the post. What is your new opinion on it now?
Really, does @KrimsonWoIf think the trust level system is a joke?
He managed to get regular despite his bad behavior in the forums
grabs a pot of popcorn Wow! you managed to get a ‘nicer’ trust level than mine with just ‘being nice’, but how rich are you? at least millionaire in dollars, else it’s not rich I think. You don’t trust me? everyone cound get 1k dollars easily in a month with their job (if it’s wellpaid, else 2 month). As you said, you are rich, but how rich? millionaire? or you have thousands of dollars? (sarcasm) I’m not rich, but having ‘Regular’ is the real joke here.
I dare you to take all what I said without offense, I’d say it’s harder than ever.
Well, you know, but ‘being rich’ is not the awnser of getting a well plugin, You’re doing well, until you literally copied others. But your life isn’t ruined, you can get an alt, try get member and publish and be nicer than ever, then say it was you all the time and boom people respect you again. Believe me, it’s easy to do things sometimes.
Also this guy is on ‘cloothing designer’ group what.
sorry if the webpage doesnt load:
I would like to mention that Forum Moderators have reached out to me due to how you tried to cover up stealing autoscale lite and taking it as your own. I won’t being saying what they said because that’s leaking but it’s important for you to know that you could be facing punishment in the future.
To clarify, this topic is related to how the plugin can be improved. Responses should be based on how the plugin can be improved and specific suggestions. Any given feedback should remain a level of respect and provide insights into the plugin itself.
Maybe improve how the plugin reputation, tried to ripoff AutoScale Lite and then hide the fact you were doing that?
Why should I use this instead of AutoScale Lite or any other scaling plugin? From what i’ve seen. You’ve just copied the code, added a few new functions, and called it a day.
AutoScale Lite and Scalar Converter are similar but completely different. I recommend using both in conjunction if you like using the scale property in your GUI.
Scalar is primarily built for developers who “love using the scale property” rather than the offset property.
For these reasons, despite previous marketing, Scalar should not be used to replace AutoScale Lite but used in collaboration with it.
Autoscale advantages:
Scalar converter advantages:
So think of Scalar as AutoScale with extra features
If Scalar is Autoscale with extra features, why do you recommend using both, when it’s clearly stated Scalar could do more.
Can you clarify what you’re asking? I’m confusing on what you mean. Are you suggesting that I incorporate the functionality of AutoScale Lite included with Scalar?
No, I’m wondering why you suggest using both Scalar and Autoscale when you clearly stated that Scalar is AutoScale, with extra features. This totally negates the use for AutoScale, and I can fully move on with Scalar. But why did you recommend using both?
Scalar and Autoscale lite have different functionalities and are not the same.
While they are similar, each have their own unique use cases.
As you can see from the image, scalar only allows you to convert GUI in bulk. So when you click “Game to scale”, it converts your entire game’s gui to scale.
This is unlike Autoscale lite which only allows converting specific GUI to offset/scale via selection. Scalar does not support this functionality, even though it theoretically could…
Let me know if you’re interested in me adding the features of Autoscale lite into scalar.
Amazing, Now can I share mine, If sure then this is my script
function uitoscale(ui :Instance, AutoSetScale :boolean)
if not ui then return end
AutoSetScale = if AutoSetScale == false then false elseif not AutoSetScale then true else AutoSetScale
local SecondUI = "Hola"
local whitelistClassName = {
"ScreenGui",
"Frame",
"TextButton",
"TextBox",
"TextLabel",
"ImageButton",
"ImageLabel",
"ScrollingFrame",
"BillboardGui"
}
for _, index in pairs(whitelistClassName) do
if ui.ClassName == index then
local secondUI = ui
while secondUI do
if secondUI == game or secondUI == nil or secondUI == game.StarterGui then SecondUI = game.StarterGui:WaitForChild("localUI")
secondUI = false end
for _, jindex in pairs(whitelistClassName) do
if secondUI then
if secondUI.Parent.ClassName == jindex then
SecondUI = secondUI.Parent
secondUI = false
end
end
end
if secondUI then
secondUI = secondUI.Parent
end
end
if AutoSetScale then
if ui.Size.X.Offset == 0 then else
ui.Size = UDim2.new(ui.Size.X.Offset / SecondUI.AbsoluteSize.X, ui.Size.X.Offset, ui.Size.Y.Scale, ui.Size.Y.Offset)
wait()
end
if ui.Size.Y.Offset == 0 then else
ui.Size = UDim2.new(ui.Size.X.Scale, 0, ui.Size.Y.Offset / SecondUI.AbsoluteSize.Y, 0)
end
ui.Size = UDim2.new(ui.Size.X.Scale, 0, ui.Size.Y.Scale, 0)
else
return UDim2.new(ui.Size.X.Offset / SecondUI.AbsoluteSize.X, 0, ui.Size.Y.Offset / SecondUI.AbsoluteSize.Y, 0)
end
end
end
return nil
end
0 voters
Note : I’m not gonna interrupt or anything
Thanks, Bye bye
Bro what
What your saying doesn’t make sense at all.
Indeed.
Why did you create a whitelist? Can’t you just :IsA()
?
They do not know how to script in LuaU entirely it seems, and only have partial knowledge.
you did the exact same thing
you haven’t used :IsA() neither.