Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I get around this roblox string protection?

Asked by 6 years ago

Okay, so here is a link for an asset: https://t5.rbxcdn.com/11f74c272dad121f8aaaea057a896b63 When I try to print it, store it etc it just changes to https://t5.rbxcdn.com/

Here is a more detailed picture: Image

It is extremely annoying and I need to be able to store it into a variable and send it in a http post request. Try it yourself for example, try doing this:

local String = "https://t5.rbxcdn.com/11f74c272dad121f8aaaea057a896b63"
print(String)

It will seriously just print "https://t5.rbxcdn.com" Is there any way around this and am I doing something wrong?

0
Interesting, it's not happening for me. CodeLad 31 — 6y
0
Is your account set to age < 13? If so, perhaps that explains it? (The string isn't filtered for me) chess123mate 5873 — 6y

1 answer

Log in to vote
0
Answered by
PolyyDev 214 Moderation Voter
6 years ago
Edited 6 years ago

try putting it in a StringValue and doing this:

local value = Instance.new("StringValue")
value.Name = "Token"
value.Value ="11f74c272dad121f8aaaea057a896b63"
print("https://t5.rbxcdn.com/"..value.Value)

Get back to me if that doesn't work

Ad

Answer this question