It really doesnāt do the same thing, it does the same thing in a different way and for different things
Your methods only make things harder for developers. A simple string.format()
function can do much, much more than your plugin.
It does not shorten anything. As I said before, string interpolation does this but better, and itās official. Using this module instead would actually be an inconvience and I would get stressed out. Sorry!
You donāt understand, we do.
im generating answers from ChatGPT for them to understand better because until now they donāt understand
I already showed you, but hereās the official announcement for it:
Itās the complete opposite. You are refusing to accept feedback.
We as experienced developers are trying to show you the correct way of doing certain things here. We are not your enemy.
Please read the string documentation as it already provides certain methods for string manipulation.
And Luau has a new feature on string interpolation that allows you to directly create a string literal with expressions inside of it.
If you think this module is better, then we need a comparison that you havenāt provided.
You are only saying āIt really doesnāt do the same thingā then what does it do?
Tbh `Player: {player.Name}` is way easier than your module, I donāt wanna waste my server memory by importing your module, If you can prove that this module is actually useful then go on!
DeepL doesnāt support hebrew unfortunately
what do you mean by āname generatorā?
It means he used a name generator for his Roblox account.
-- THIS WAY (107 letters)
local rep = require(game.ReplicatedStorage.Replacer)
print(rep:Txt("hi, %plr%, you have: %plr_fps% fps!"))
-- THE OTHER WAY (301 letters)
local RunService = game:GetService("RunService")
local plr = game.Players.LocalPlayer
local function updateFPS(v)
while wait(0.02) do
local FPS = 1 / RunService.RenderStepped:Wait()
return tostring(math.round(FPS))
end
end
local fps = updateFPS()
print(`hi, {plr.Name}, you have: {fps} fps!`)
If it wasnāt 100 Robux, maybe someone would actually download this.
This plugin is effectively interpolation, and considering what Iāve seen so far, I donāt know quite why anyone would check it out for 100 Robux.
Iām not saying that this plugin canāt improve though, if you add more functions, I think it would be more worth it.
Edit: Actually, some of the functions are quite useful, I think it would have helped you if you had used better examples in the video, because they are extremely basic examples unfortunately.
Is this plugin just a copy of string.format?
yes it is, but there is string interpolation too
im also working on new things like this:
local rep = require(game.ReplicatedStorage.Replacer)
print(rep:Txt("%random_word% %random_word%"))
it is have more then 20000 words
and its also filtered
console:
-
dermoid
-
flagpoles
In your Quest AI post, you didnāt filter the responses but then added the filter
also i forgot i was on the serbian keyboard
Using ChatGPT is not going to help your argument, itās just going to make the situation worse.
And plus, the Roblox Terms of Use generally doesnāt apply to a certain extent on DevForum, posts can be taken down if theyāre not that useful and theyāre in this category (if a plugin isnāt that useful, use Creations Feedback).
I think personally that this plugin is useful to the right person anyways.
Nobody is sharing your code here, donāt use ChatGPT, itās not helping you.
Sharing code is like what people on a hacking forum did to my friends plugins.
Am I dumb or did I think string interpolation meant like:
TextBox.Text = "Hello, " .. username .. ". How are you?"
-- Username is a variable in this case
Yeah, oops.