How do i make a new line above the top one?

image
i want to make a new line here, how do i do that?
(I dont NEED to do this, i just want to know. and i wanan add another comment there)

2 Likes

Go to the beginning of the first line and press Enter.

no, that makes a line under that line. i want to make a line above the very first line (The Comment)

wait sorry, i read ur comment wrong ur right :sob:

you can go to the start of the line and press enter.
Go to the end of the line and press the 7 on the keypad without number lock on.

or you can use this on it in the command bar:

--select the script first
local script = game:GetService("Selection"):Get()[1]
script.Source = "\n"..script.Source

Iā€™m talking about the line where the comment is located, not the first variable definition.

also sum just came up, theres something liek using

--[
Comment here
Comment here
]--

But i dont remeber how to do that, how do i do that again? (If u know what im talkign about)

do you mean multiline comments? You use two double brackets for that.

--[[
this is a
multiline comment
]]

print(--[[short comment]] "Short comment")
1 Like

ohhhhh ok thanks man
char limit

1 Like
--[[ comment here ]]--

or

--[=[ comment here ]=]--

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.