sjr04
(uep)
March 25, 2020, 5:44am
#44
https://developer.roblox.com/en-us/api-reference/lua-docs/string
It would be nice if string.gsub
return types were annotated as string, int
since it returns two values, the second one being how many replacements were made.
string.find
's return types are properly annotated this way.
Also number
is the incorrect type for plain
. It should be bool
.
6 Likes
Rare_tendo
(Rare_tendo)
March 31, 2020, 10:05pm
#47
The “Asset Types” hyperlink on the MarketplaceService:GetProductInfo() page, when clicked, leads to the 404 error page because it doesn’t exist, when it should lead to this page: AssetType
3 Likes
The Ray
page has a broken link to Workspace:FindPartOnRay()
, which has been changed to WorldRoot:FindPartOnRay()
.
4 Likes
RafDev
(RafDev)
April 8, 2020, 10:57pm
#49
Malformed sentence and broken link on the Tool.Enabled page.
Can’t believe Roblox of all companies has resorted to name-calling against their users
8 Likes
agentcole1
(agentcole1)
April 12, 2020, 12:50am
#50
Minor typo on the AnimationTrack.Priority page.
3 Likes
mothmage
(moth)
April 14, 2020, 2:36am
#52
5 Likes
agentcole1
(agentcole1)
April 22, 2020, 8:19am
#53
Minor typo on the PreferredPlayers page. There should be no is in the sentence.
2 Likes
DarkLizz
(Kitty)
April 25, 2020, 4:55am
#54
2 Likes
agentcole1
(agentcole1)
April 26, 2020, 2:50pm
#55
Minor typo on the Humanoid.Health page. There should be no will in the sentence.
1 Like
Vilksian
(Vilksian)
April 27, 2020, 2:26am
#57
Syntax mistake in the VRService code example.
The line in question:
print(typ.Name + " changed. Updated Frame: " + value)
Using ‘+’ to concatenate strings is not valid Lua. It works in other languages such as C++ though. The line should instead use Lua’s concatenation, like so:
print(typ.Name.." changed. Updated Frame: "..value)
2 Likes
Broken image in the Humanoid.Jump page:
sjr04
(uep)
May 4, 2020, 10:46am
#61
SirMing
(SirMing)
May 4, 2020, 6:15pm
#62
GetFriendsOnline returns GameId and the name says GameId. But it used to return JobId and the description says JobId.
https://developer.roblox.com/en-us/api-reference/function/Player/GetFriendsOnline
thetacah
(thetacah)
May 4, 2020, 11:49pm
#63
LoadAsset page says workpsace instead of workspace.
2 Likes
Someone echoed at Lua Globals print.