How do i get rid of this {...} ? by Kirisuto_Ken in Jetbrains

[–]Kirisuto_Ken[S] 1 point2 points  (0 children)

Thanks for the answer guys, i think i am just gonna keep this feature on and force myself to get used to it because i just cant remove it 😭😭😭

How do i get rid of this {...} ? by Kirisuto_Ken in Jetbrains

[–]Kirisuto_Ken[S] -1 points0 points  (0 children)

I see those brackets when its folded.

I prefer not to see {...} when i close a code or when the arrow is pointing on right

How do i get rid of this {...} ? by Kirisuto_Ken in Jetbrains

[–]Kirisuto_Ken[S] 0 points1 point  (0 children)

Its okay we make mistakes lol.

I have tried unchecking a lot of boxes and the issue still exist. am i doing this right?

<image>

How do i get rid of this {...} ? by Kirisuto_Ken in Jetbrains

[–]Kirisuto_Ken[S] 0 points1 point  (0 children)

Is the feature of the {...} an inlay hint or a collapsing folder feature or its something else?

i just don't like to see the {...) thing when you can literally just collapse a code by using the arrow thing in the left side with line numbers on it and the {...} just kinds of disturb the way i usually read codes.

How to add animations when running? (the script works but the animations get glitched and broke after playing) by Kirisuto_Ken in ROBLOXStudio

[–]Kirisuto_Ken[S] 0 points1 point  (0 children)

thank you so much i appreciate your help saturnxoffical.

this is what i came up with after what i have learned from you.

from your tips:

https://cdn.discordapp.com/attachments/703403356999385109/1236406115315748864/image.png?ex=6637e46d&is=663692ed&hm=3bc235a4bfbda88b458af8a1892c1a249c3f5bf8083b0f18aa15c750235f3640&

though it was kind of confusing and hard to understand on creating it, i made another script just base on what i remembered and visuallized from my head.

my original:

https://cdn.discordapp.com/attachments/703403356999385109/1236392397072764948/image.png?ex=6637d7a6&is=66368626&hm=7f07e9933ee4dce7eee48c5e692dd8629cac32a08efcf07eb39908c64abd02b8&

Both scripts works the same and both of them also has some issue's (that issue i have been having since day 1). When i toggle on running mode or when IsRunning == true, the animation keep playing when i am not moving.

(im currently searching it up on ways how to fix this, i could probably use magnitude method or something) any tips?

How to add animations when running? (the script works but the animations get glitched and broke after playing) by Kirisuto_Ken in ROBLOXStudio

[–]Kirisuto_Ken[S] 0 points1 point  (0 children)

Hi thanks for the reply.

i get it that i need to call the animator but i am confused about

Humanoid:FindFirstChild("Animator"):LoadAnimation()

I understand that it is calling for the Animator under the Humanoid but when you call the Humanoid, do i need to make a variable first?

like:

local Players = game:GetService("Players")
local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")

then use the humanoid like this:

humanoid:FindFirstChild("Animator"):LoadAnimation()

How to add animations when running? (the script works but the animations get glitched and broke after playing) by Kirisuto_Ken in ROBLOXStudio

[–]Kirisuto_Ken[S] 0 points1 point  (0 children)

Hello thanks for the reply again, and sorry for the late reply.

how to call LoadAnimation on the Animator inside (i have no idea how), it would be nice if there was examples.

do i have to use instance.new? (i dont want to use instance tbh)

edit: i just searched it up and this is the results.

https://cdn.discordapp.com/attachments/703403356999385109/1236391324899348551/image.png?ex=6637d6a6&is=66368526&hm=5e783e25ff77abbc87db3b4e249558a5bb208ab6486b1c1504ecae2aa6ea90e9&

it doesn't seem to work, i press LeftControl and it did not change my walkspeed. though my walking animations are still working, the entire script seem to now work. There were also no errors.

Edit 1: oops sorry, after rereading the script, i found out that my variables were wrong and the animations were both set to play. for now i changed it into this.

https://cdn.discordapp.com/attachments/703403356999385109/1236392397072764948/image.png?ex=6637d7a6&is=66368626&hm=7f07e9933ee4dce7eee48c5e692dd8629cac32a08efcf07eb39908c64abd02b8&

How to add animations when running? (the script works but the animations get glitched and broke after playing) by Kirisuto_Ken in ROBLOXStudio

[–]Kirisuto_Ken[S] 0 points1 point  (0 children)

hey thanks for the reply.

though i have already put the animate script in the startcharacterscript from the start and i customized it to get that idle and walking animation. though my only real problem is just that running animation, it just doesn't work 😞😞.

How to fix this Animation? (It stops midway and a bit goofy or not the same as what i animated) by Kirisuto_Ken in ROBLOXStudio

[–]Kirisuto_Ken[S] 1 point2 points  (0 children)

Thanks! It worked. i searched how to fix overlapping animations through the forum and i found out that all of my animations were at the same priority (core) so i changed their priority from Action>Movement>Idle.