Messy data script

maybe make a function for creating new values.
usually makes scripts like that look better in my experience.
adds more functionality too i think.

example:

local function newValue(name, value, parent, class)
  local v = Instance.new(class)
  v.Name = name
  v.Value = value
  v.Parent = parent
  return v
end

local someValue = newValue("something", 999, workspace, "NumberValue")

Also never use the parent setting thing part of instance.new.
It takes longer and causes more lag.
You should always set the parent AFTER setting its properties
The set parent part of the instance.new function is deprecated