When I go to the racing roblox studio template, the car configuration has these attributes:

However, I see no option to add input as an attribute.
What is going on?
I have found NOTHING online and I am really annoyed.
When I go to the racing roblox studio template, the car configuration has these attributes:

However, I see no option to add input as an attribute.
What is going on?
I have found NOTHING online and I am really annoyed.
Pretty sure either:
outdated ahh attributes i swear
you can’t add inputs in attributes, you can use strings, which is seen in some of those attributes
I looked into this myself, that’s actually kinda cool to know. You can set attributes as enum items using command line or other methods, just not through the properties tab.
You can only set them through code unforunately. You can edit this table and execute this code while selecting objects in the Explorer.
local attributes = {
Key = Enum.KeyCode.A
}
for _, instance in game:GetService("Selection"):Get() do
for attribute, value in attributes do
instance:SetAttribute(attribute, value)
end
end
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.