Adding attributes as input

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

image

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:

  • A. Those values are just strings.
  • B. Roblox has been gate keeping us this whole time

outdated ahh attributes i swear

you can’t add inputs in attributes, you can use strings, which is seen in some of those attributes

1 Like

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.