How to Make FIRST PERSON? | Roblox Studio Tutorial

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024

Комментарии • 533

  • @coolcapidog
    @coolcapidog  4 месяца назад +17

    🤑I'm selling fully scripted simulator game. 👉Watch the full video here: ruclips.net/video/FnSwoFdULJY/видео.html

    • @shadowshocking998
      @shadowshocking998 4 месяца назад

      Any idea how to change the sensitivity for this first person script?
      Edit: nvm just turn up ur own sensitivity 💀

    • @Site20Entertainment
      @Site20Entertainment 2 месяца назад

      heyy its broken for me and the head just floats their while the body moves!

  • @kornjii8190
    @kornjii8190 2 месяца назад +4

    Doesn't get any better.
    1 minute, straight to the point.
    Worked well for me, and for my upcoming horror map.
    Thank you!

  • @vibe4944
    @vibe4944 11 месяцев назад +34

    Hi I'm a sort of new developer and I saw 2 of your videos, I gave it a try and it works amazingly! You truely are a life saver from typing for 5 hours just for a error 😅

    • @sunshinestation2949
      @sunshinestation2949 9 месяцев назад

      me too!

    • @beanie.weanie
      @beanie.weanie 7 месяцев назад +1

      bro does urs have any issues? when i reset the camera doesnt go to the new body

    • @stefsbloxfruits2971
      @stefsbloxfruits2971 6 месяцев назад +1

      @@beanie.weanie same

    • @beanie.weanie
      @beanie.weanie 6 месяцев назад

      @stefsbloxfruits2971 at least I'm not alone

    • @Angelo-Roblox8
      @Angelo-Roblox8 4 месяца назад

      Btw The Body Is Invisible And the Script Crashed Studio.

  • @nube8a41
    @nube8a41 Год назад +17

    POV Noobs:
    --*Local Script in StarterPlayer --> StarterCharacterScripts*
    Change in StarterPlayer MaxZoomDistance to 0.5.
    local player = game:GetService("Players").LocalPlayer.Character
    local UserInputService = game:GetService("UserInputService")
    UserInputService.InputBegan:Connect(function(input)
    if input.KeyCode == Enum.KeyCode.LeftShift then
    player.Humanoid.WalkSpeed = 34
    end
    end)
    UserInputService.InputEnded:Connect(function(input)
    if input.KeyCode == Enum.KeyCode.LeftShift then
    player.Humanoid.WalkSpeed = 16
    end
    end)
    coolcapidog:
    anToggleMouse = {allowed = true; activationkey = Enum.KeyCode.F;}
    CanViewBody = true
    Sensitivity = 0.6
    Smoothness = 0.05
    FieldOfView = 80
    HeadOffset = CFrame.new(0,0.7,0)
    repeat wait() until game:GetService("Players").LocalPlayer.Character ~= nil
    local runService = game:GetService("RunService")
    local input = game:GetService("UserInputService")
    local players = game:GetService("Players")

    local cam = game.Workspace.CurrentCamera
    local player = players.LocalPlayer
    local m = player:GetMouse()
    m.Icon = "www.roblox.com/asset/?id=569021388" -- replaces mouse icon
    local character = player.Character or player.CharacterAdded:wait()
    local human = character.Humanoid
    local humanoidpart = character.HumanoidRootPart

    local head = character:WaitForChild("Head")
    local CamPos,TargetCamPos = cam.CoordinateFrame.p,cam.CoordinateFrame.p
    local AngleX,TargetAngleX = 0,0
    local AngleY,TargetAngleY = 0,0

    local running = true
    local freemouse = false
    local defFOV = FieldOfView

    local w, a, s, d, lshift = false, false, false, false, false

    local easingtime = 0.1 --0~1
    local walkspeeds = {
    enabled = true;
    walkingspeed = 16;
    backwardsspeed = 10;
    sidewaysspeed = 15;
    diagonalspeed = 16;
    runningspeed = 25;
    runningFOV= 85;}

    function updatechar()
    for _, v in pairs(character:GetChildren())do
    if CanViewBody then
    if v.Name == 'Head' then
    v.LocalTransparencyModifier = 1
    v.CanCollide = false
    v.face.LocalTransparencyModifier = 1
    end
    else
    if v:IsA'Part' or v:IsA'UnionOperation' or v:IsA'MeshPart' then
    v.LocalTransparencyModifier = 1
    v.CanCollide = false
    end
    end
    if v:IsA'Accessory' then
    v:FindFirstChild('Handle').LocalTransparencyModifier = 1
    v:FindFirstChild('Handle').CanCollide = false
    end
    if v:IsA'Hat' then
    v:FindFirstChild('Handle').LocalTransparencyModifier = 1
    v:FindFirstChild('Handle').CanCollide = false
    end
    end
    end

    function lerp(a, b, t)
    return a * (1-t) + (b*t)
    end
    input.InputChanged:connect(function(inputObject)
    if inputObject.UserInputType == Enum.UserInputType.MouseMovement then
    local delta = Vector2.new(inputObject.Delta.x/Sensitivity,inputObject.Delta.y/Sensitivity) * Smoothness

    local X = TargetAngleX - delta.y
    TargetAngleX = (X >= 80 and 80) or (X 180 and dist - (dist / math.abs(dist)) * 360 or dist
    AngleY = (AngleY + dist *0.35) %360
    cam.CameraType = Enum.CameraType.Scriptable
    cam.CoordinateFrame = CFrame.new(head.Position)
    * CFrame.Angles(0,math.rad(AngleY),0)
    * CFrame.Angles(math.rad(AngleX),0,0)
    * HeadOffset
    humanoidpart.CFrame=CFrame.new(humanoidpart.Position)*CFrame.Angles(0,math.rad(AngleY),0)
    else game:GetService("UserInputService").MouseBehavior = Enum.MouseBehavior.Default
    end
    if (cam.Focus.p-cam.CoordinateFrame.p).magnitude < 1 then
    running = false
    else
    running = true
    if freemouse == true then
    game:GetService("UserInputService").MouseBehavior = Enum.MouseBehavior.Default
    else
    game:GetService("UserInputService").MouseBehavior = Enum.MouseBehavior.LockCenter
    end
    end
    if not CanToggleMouse.allowed then
    freemouse = false
    end
    cam.FieldOfView = FieldOfView
    if walkspeeds.enabled then
    if w and s then return end
    if w and not lshift then
    FieldOfView = lerp(FieldOfView, defFOV,easingtime)
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.walkingspeed,easingtime)
    elseif w and a then
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.diagonalspeed,easingtime)
    elseif w and d then
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.diagonalspeed,easingtime)
    elseif s then
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.backwardsspeed,easingtime)
    elseif s and a then
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.backwardsspeed - (walkspeeds.diagonalspeed - walkspeeds.backwardsspeed),easingtime)
    elseif s and d then
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.backwardsspeed - (walkspeeds.diagonalspeed - walkspeeds.backwardsspeed),easingtime)
    elseif d then
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.sidewaysspeed,easingtime)
    elseif a then
    human.WalkSpeed = lerp(human.WalkSpeed,walkspeeds.sidewaysspeed,easingtime)
    end
    if lshift and w then
    FieldOfView = lerp(FieldOfView, walkspeeds.runningFOV,easingtime)
    human.WalkSpeed = lerp(human.WalkSpeed,human.WalkSpeed + (walkspeeds.runningspeed - human.WalkSpeed),easingtime)
    end
    end
    end)

  • @malabeu2686
    @malabeu2686 Год назад +12

    For me you are the best roblox studio tuto youtuber

  • @maxximouseyyy3917
    @maxximouseyyy3917 10 месяцев назад +15

    Tysm for making this! It worked for my midnight at 7-11 game...You earned a subscriber for helping out a small horror developer!

    • @mahdi.html.
      @mahdi.html. 5 месяцев назад

      sounds like a fun game

    • @therealswamprat
      @therealswamprat 3 месяца назад +1

      w game btw

    • @TrimFlame
      @TrimFlame 3 месяца назад

      yoo i played that its pretty good if it was yours

  • @arisabrown5353
    @arisabrown5353 6 месяцев назад +5

    It worked at first when i tested the game, then when i joined the actual game the next day, it just gave me headless.

    • @v3nomlove
      @v3nomlove 5 месяцев назад +2

      Same

    • @ThatGirlSkyler01
      @ThatGirlSkyler01 2 месяца назад +1

      idk how to code but i found out how to fix that, just set the "view body" to false

    • @ajaykaul
      @ajaykaul 2 месяца назад

      same

  • @Whatsup_lol
    @Whatsup_lol 3 месяца назад +1

    tysm dude it helped me so much when i was tryna make a horror game

  • @JozinZeBazin
    @JozinZeBazin 10 месяцев назад +7

    this is amazing it works perfectly, no flaws and its so smooth

  • @Supermariosam529
    @Supermariosam529 Месяц назад

    Exactly what I needed for my game, thank you so much!

  • @adamc1240
    @adamc1240 Год назад +17

    Please can you also make a lobby teleportation system? Your tutorials are the best! Love your videos :)

  • @aniketcreativeplayz
    @aniketcreativeplayz 3 месяца назад

    Thank u man Ur tutorials are easy to follow and the best part is u give us free models!

  • @kozy2222
    @kozy2222 2 месяца назад +3

    whoever uploaded ts on waybackmachine is a real one👑

  • @KINPPYYOUTUBE
    @KINPPYYOUTUBE Год назад +2

    TySM For Making It In The Desc!

  • @rmms5f41rupamroy6
    @rmms5f41rupamroy6 Год назад +2

    Brooooo. I was looking for it far n wide... Tysmmm

  • @Marius93050
    @Marius93050 Год назад +33

    can u make minimap with others players icons too ?

  • @LOXUS158
    @LOXUS158 4 месяца назад

    thanks so much, me and my gf are making a horror game and we are so excited that we are able to make such a good animation. You earned urself a sub :)

  • @fofinhopt1776
    @fofinhopt1776 5 месяцев назад

    u just earned urself another sub, ivce only watched ur tutorials 2 times, and they work, not only that, but i dont have to spend 30 minutes to get the script.

  • @nikkosova4168
    @nikkosova4168 5 месяцев назад

    thank you so much it made 5 hours of coding 5 seconds and it actually works

  • @relubalas4584
    @relubalas4584 5 месяцев назад +1

    ex tip go starter character scripts shearch camera mode and put first person

  • @rollingthe1st
    @rollingthe1st 2 месяца назад +1

    im gonna make a good police bodycam game with this

  • @IW_1mmao
    @IW_1mmao 26 дней назад +1

    doesnt have any way that i can switch back to 3rd person? Like i can switch 1st person or 3rd but when i go 1st person i can see my body.

  • @RandomDummyYT
    @RandomDummyYT 11 месяцев назад +7

    If someone's having problem with sensitivity being too slow, than smaller the number = than faster you can look. So write a smaller number than a high one. Also, thank you for the tutorial :).

    • @Pig_Man123
      @Pig_Man123 7 месяцев назад +1

      I love comments like yours they most of the time help

    • @ArcaPuer
      @ArcaPuer 6 месяцев назад +1

      thanks bro

    • @RandomDummyYT
      @RandomDummyYT 6 месяцев назад

      no problem :)@@ArcaPuer

  • @prestonrobinson8075
    @prestonrobinson8075 8 месяцев назад

    Thanks bro im making a horror game but i dident know how to make the game first person but this helped me a lot thanks

  • @DEFCHIMPY
    @DEFCHIMPY 2 месяца назад

    I love your videos so much your the best ur so quick and good you help me a lot with these videos

  • @goofy_aah_spiderman
    @goofy_aah_spiderman 3 месяца назад

    you are the only youtuber that put a link in the description for the script instead of scripting in the video

  • @jamiealex3504
    @jamiealex3504 2 месяца назад

    Works perfectly for my Napoleonic war game… I can see the musket perfectly at the bottom of my screen

  • @coolcapidog
    @coolcapidog  Год назад +39

    👉🏻You can hire me here: www.fiverr.com/share/4Q0a2G

    • @cnaruzunhan271
      @cnaruzunhan271 Год назад +6

      where is script

    • @Bigtrees-
      @Bigtrees- Год назад

      @@cnaruzunhan271description

    • @Letochka-7
      @Letochka-7 9 месяцев назад +1

      @@cnaruzunhan271 bruh

    • @ivanchl
      @ivanchl 9 месяцев назад

      Hey CoolCapidog. What if I want to add my running and walking animation into the first person mode. How do I do it? Because if I just copy my character's Animate script and place my ID in there, in the first person it does not work. CAn someone help me please, for example you CoolCapiDog?

    • @S0ull3ssroblox
      @S0ull3ssroblox 8 месяцев назад +1

      @@cnaruzunhan271 Link to it in desc, Ik I said that 5 months late 💀 But if you still need it, it's there!

  • @ViktoriusViki
    @ViktoriusViki Год назад +1

    your videos i sooo fire i making hammer battles game and your videos is help me aloth

  • @dzazon
    @dzazon 2 месяца назад +1

    Can you make tutorial how to make first person after push play button in main menu please

  • @Wad_wody
    @Wad_wody Год назад +2

    Please my friend, I want a video on how to create a jumpscar. In roblox studio

  • @GhostXix
    @GhostXix Год назад +1

    TYSM! THIS HELP SO GOOD!

  • @expresstvoffical
    @expresstvoffical 2 месяца назад +2

    THE SCRIPT is a threat

  • @DinoYT209
    @DinoYT209 7 месяцев назад

    Thank u bro! This will help much in my game.

  • @seid168
    @seid168 7 месяцев назад

    ik that many people have a problem with the senstivity, to make it faster, at the 3rd row of the script, turn 0,6 to 0,1. np

  • @hamzayahya1696
    @hamzayahya1696 Год назад +1

    really thank you you solved my problems

  • @Incrept_Tv
    @Incrept_Tv Год назад

    Earned a sub, TBH I DONT EVEN KNOW WHY I WASNT SUBBED YET WHEN I MET U MONTHS EARLIER!

  • @NayaMay-y5t
    @NayaMay-y5t 2 месяца назад

    yo bro ty you so much i have been looking for this video for a long time so ty you !!!!!!!

  • @samuriax5631
    @samuriax5631 Год назад +2

    I SWEAR THIS MAN DESERVE MORE THEN 8.29k SUBSCRIBERS

    • @Catt_playz
      @Catt_playz 7 месяцев назад

      u sure bud? it aint working for me

  • @volcaniac8307
    @volcaniac8307 3 месяца назад +2

    is it possible to remove the shift to sprint part?

  • @smile_is_behind
    @smile_is_behind 7 месяцев назад

    really nice tutorial, easy, short, really useful, 10/10

  • @ItsDoge451
    @ItsDoge451 Год назад +2

    i entered the script and then clicked play and then nothing changed?

  • @robloxcreator437
    @robloxcreator437 6 месяцев назад +2

    Your script is great! But there is a issue, It just does not function for mobile. Is there any way you can make it work for mobile? If so please let me know, thanks.

    • @hms..studio740
      @hms..studio740 6 месяцев назад

      i need help on that too

    • @JJDaN1nja
      @JJDaN1nja 6 месяцев назад

      Bro same I was looking If anyone else wanted to make a function for mobile

    • @Goatmey
      @Goatmey 5 месяцев назад

      Yeah same here

  • @JayBaeDay
    @JayBaeDay 5 месяцев назад +2

    How do I make these work for mobile the rotating

  • @Yessirskee
    @Yessirskee 8 месяцев назад +1

    BRO JUST EARNED A SUB GUYS WATCH THE VID WITH THE SHIFT RUN!!

  • @glendasheiler
    @glendasheiler 11 месяцев назад +2

    idk why but when i play it , i don't see my body 🤐😐 Did i miss something ?

  • @remussssssssss
    @remussssssssss 8 месяцев назад +3

    for me it dosent work .... i did not make a single mistake following this video and my head disssapeared and i can zoom out and in......... please help me

    • @Donylit
      @Donylit 7 месяцев назад

      dynamic heads wont work

    • @Uknownkings
      @Uknownkings 2 месяца назад

      @@Donylitwdym

    • @nantonamo
      @nantonamo 5 дней назад

      To fix the zoom in and out bug go to the starterplayer properties then go to camera properties then set CameraMode to LockFirstPerson

  • @janrac3427
    @janrac3427 11 месяцев назад +1

    I made everything like you, but it isn't working. Don't know what could be wrong?

  • @MrIceyOfficial
    @MrIceyOfficial 7 месяцев назад +1

    I tried using it but it just ended up with my character not having a head....

  • @blada0163
    @blada0163 Год назад

    Omg It worked and its the best first person in roblox i have ever seen

  • @Sp4ceC3L3ST1AL
    @Sp4ceC3L3ST1AL 4 месяца назад +1

    BRO TYSM ❤

  • @ServerIdealen
    @ServerIdealen Год назад +1

    *coolcapidog i waiting this video too much days tell me why are u don't made video how to make badge what giving an avatar item/UGC tell me pls*

  • @Fear166
    @Fear166 Год назад +6

    Can you make a sliding proximity keycard door?

  • @SpeedyFAST2006
    @SpeedyFAST2006 11 месяцев назад

    It works, but I didn't expect roblox servers to be down while testing this.

  • @14xxD
    @14xxD 2 месяца назад

    Amazing bro thanks a lot! New sub my dude.

  • @airjitsuburst
    @airjitsuburst 10 месяцев назад +1

    The code just made my character headless

  • @TopGovo1
    @TopGovo1 9 месяцев назад +3

    bro i just made me lose my head💀💀

    • @CasticDigital
      @CasticDigital 7 месяцев назад

      same, my head disappeared and im still in 3rd person

  • @Elainekede
    @Elainekede 2 месяца назад +1

    Hi i just wanna ask you how do i make it work on phone. It has some bugs such as camera not moving

  • @oh_noes69
    @oh_noes69 Год назад +1

    This is the exact free model i used before 7 months ago - what?

    • @coolcapidog
      @coolcapidog  Год назад

      similar scripts bro

    • @oh_noes69
      @oh_noes69 Год назад

      @@coolcapidog Lol cool bro! keep up the good work though!

    • @CallMeSoxcs
      @CallMeSoxcs Месяц назад

      @@coolcapidog Yo the script got taken down can u make a new one???

  • @LevRBLOX
    @LevRBLOX 7 месяцев назад

    Tysm im subbing this works so well

  • @cyberthephantom147
    @cyberthephantom147 4 месяца назад +1

    When testing i cant move, pressing wasd and space my character doesnt move.

  • @RainSurv
    @RainSurv 11 месяцев назад +2

    How do I disable the running feature? I don't need that as I already got a running script and I need to access it.

  • @mamradmessi1524
    @mamradmessi1524 23 дня назад +1

    script was deleted i hav error 404

  • @VidaIndustries
    @VidaIndustries Год назад +1

    BRO NONE OF THESE SCRIPTS WORK
    Only part of this works for me. the animation and mouse works but i can't see my body
    why?

    • @dodoooojplond
      @dodoooojplond 9 месяцев назад

      i litteraly used this yesterday and it was working fine and now today it the script just broke and i didn't change anything in the code

  • @Asceptical
    @Asceptical 5 месяцев назад

    Hey!
    I would like to tell you that this script works perfectly fine.
    I would like to request that this first person script should also be compatible for mobile too! I like the camera locking on the player's head, that's all :)

  • @thegoldengamer167
    @thegoldengamer167 8 месяцев назад +1

    thank because i want to make a game in roblox but it does´nt like at roblox and than is this verry helpfull

  • @salmanahdi6898
    @salmanahdi6898 2 месяца назад

    You thank yo❤u so much I’m creating a game but you showed me how to TYSMMMMM

  • @countdown111
    @countdown111 5 месяцев назад +1

    tysm bro it works!

  • @Ivoluvsmilk
    @Ivoluvsmilk 11 месяцев назад

    THIS HELPED ME SO MUCH TY U JUST EARNED A SUB!

  • @willasares7857
    @willasares7857 11 месяцев назад

    This works rlly well, thanks

  • @cybersaturnx7771
    @cybersaturnx7771 4 месяца назад +2

    Why my character head be headless?

  • @HeatCoolVR
    @HeatCoolVR 5 месяцев назад

    Thanks this was really helpful!

  • @sydneychloe7731
    @sydneychloe7731 7 месяцев назад +2

    omg thx bro i wasnt expecting it to be a basic simple tut(orial). This is good for begginers

    • @1noxy470
      @1noxy470 5 месяцев назад +2

      did u just abbreviate tutorial and then wrote the whole word out anyways

    • @reversirity
      @reversirity 4 месяца назад

      true

    • @reversirity
      @reversirity 4 месяца назад

      @@1noxy470 lol

  • @yusufalicengiz3088
    @yusufalicengiz3088 5 месяцев назад

    Thanks budy it helped me❤

  • @MaximSparrow
    @MaximSparrow Год назад +1

    AMAZING! But I don’t see my body…

  • @GmProYouTube
    @GmProYouTube 10 месяцев назад

    the wrost problem is that when you come infront of a rig or a player you will see yourself taller than him also there a chance to see your face decal

  • @nannette725
    @nannette725 Год назад +1

    Nice for my doors floor 2

    • @deathare4332
      @deathare4332 Год назад

      can u copy paste the script pls pastebins banned in my country

    • @Fokuseucomeu
      @Fokuseucomeu Год назад

      @@deathare4332 bro, which country ban pastebin💀but the script not work

  • @officalbaconhairgaming7337
    @officalbaconhairgaming7337 Месяц назад +1

    pastebin just deleted your script by the way.

  • @Dasullyguy
    @Dasullyguy Месяц назад +1

    i cant get the script cuz the site blocked it :(

  • @BLUE-DOORS
    @BLUE-DOORS 7 месяцев назад

    man its relly relly coooooool is working and is very smooth

  • @anabethmartinez15
    @anabethmartinez15 2 месяца назад

    honestly best person in the world

  • @yassyfriess8060
    @yassyfriess8060 Месяц назад +1

    your script does not work anymore

  • @veto_real
    @veto_real Год назад +1

    Very nice :D
    I might make this into a free script

  • @BlazingDogePlayzRBX
    @BlazingDogePlayzRBX Год назад

    The legend is back once again...

  • @PenalizedPrick
    @PenalizedPrick Год назад

    Helped so much thanks!

  • @Devourn_
    @Devourn_ Год назад +1

    capi can you make a tutorial for a chest with a loot table similiar to fortnite chests?

  • @EpicGamer91
    @EpicGamer91 3 месяца назад +1

    For some reason now I’m nit able to move my character in my game on mobile

  • @DenDen60K
    @DenDen60K 7 месяцев назад

    Yooo thank you very much I’m making my rooms fan game

  • @influXse01
    @influXse01 Год назад +2

    How to mqke frist person animations?

  • @CR7-Goat-e9i
    @CR7-Goat-e9i 8 месяцев назад +1

    pls how to make Stage to obby in roblox studio

  • @abi_art
    @abi_art 5 месяцев назад +1

    why it dont work
    for me

  • @aymangr8
    @aymangr8 Год назад +1

    Inventory system next ?

  • @amirispro333
    @amirispro333 8 месяцев назад

    Thanks so much! 👍

  • @MSGARAGEGAMINGGG
    @MSGARAGEGAMINGGG Год назад +1

    can u make a video on fall damage? Btw new sub u help me with legit everything and ur gonna make my game so much better :D edit: you should also make a video on how to have a working security camera system

  • @MrBao76
    @MrBao76 6 месяцев назад

    thank you man works fantastic

  • @itstigerhopper
    @itstigerhopper Месяц назад

    So I made a game and when you walk, you just move, but your character has no walking animation. It just looks like a brick sliding against the ground. Do you know how to fix it?

  • @Professor_Collect
    @Professor_Collect 11 месяцев назад +5

    So, I need my cursor to be able to freely move around the screen and I do not have much knowledge about Lua scripts. The reason of this is because the player needs to click responses when dialogue pops up which is at the bottom corner of there screen. So if you possibly can could you find a way to fix that perhaps in another video?

    • @JozinZeBazin
      @JozinZeBazin 10 месяцев назад

      maybe you can find a separate tutorial which is something like "how to free your mouse in first person game"

    • @Professor_Collect
      @Professor_Collect 10 месяцев назад

      That is a good idea @user-yg2vg5ri5v

    • @littleluigi6066
      @littleluigi6066 10 месяцев назад +1

      in the code you press F to release mouse

    • @GmProYouTube
      @GmProYouTube 10 месяцев назад

      i made this one just trough the toolbox

  • @luhvnikii
    @luhvnikii 5 месяцев назад +1

    It I join on mobile it doesn’t let me move my camera. Any way to fix this?

  • @EldenRing-b3m
    @EldenRing-b3m 3 месяца назад

    YOU ARE A SAVIOUR, MY DUDEEEEEEEE, YOU JUST EARNED A SUB

  • @BILLY-29
    @BILLY-29 8 месяцев назад

    dude this is perfect !!