rnk
rnk
  • 10
  • 39 462
Promised Paradise - Update log 1 (ROBLOX)
#animation #gamedev #roblox #robloxgameplay #robloxstudio #tutorial
showcased in the video:
1. Advanced movement system
2. Custom gui for blood sorcerer (unfinished)
3. Blood Sacrifice ability (blood sorcerer)
4. Vampire Touch ability (blood sorcerer)
5. Sanguine Slam ability (blood sorcerer)
6. Blood Pillar ability (blood sorcerer)
7. Blood Thunderstorm ultimate move (blood sorcerer)
8. Blood Thunderstorm Showcase
9. Finisher move (blood sorcerer) (unfinished)
มุมมอง: 422

วีดีโอ

ROBLOX How To Make A FPS System - PART 3: Drop & Pickup Items
มุมมอง 996หลายเดือนก่อน
#animation #gamedev #roblox #robloxgameplay #robloxstudio #tutorial script pastebin: pastebin.com/WACutvv1 knife animation: create.roblox.com/store/asset/140586837470107/knifehit Open Sourced game: www.roblox.com/games/17478919258/video my group: www.roblox.com/groups/4327350/Noob-Studio#!/about
ROBLOX How To Make A First Person System - PART 2: Punching Tool
มุมมอง 3.1K3 หลายเดือนก่อน
#animation #roblox #gamedev #robloxstudio #robloxgameplay #tutorial Place ID: www.roblox.com/games/17478919258/video animations ids: 18149713142 right 18152374841 left animations links: create.roblox.com/store/asset/18149713142/punch1 create.roblox.com/store/asset/18152374841/punch2
ROBLOX How To Make A First Person System - PART 1: Body Movement & Camera
มุมมอง 17K4 หลายเดือนก่อน
PLACE: www.roblox.com/games/17478919258/video animations: create.roblox.com/store/asset/17448684392/idle-fight create.roblox.com/store/asset/17460499009/idle-walk #roblox #robloxgameplay #robloxstudio #gamedev #robloxgames #animation #robloxedit #robux
ROBLOX How To Make A Climbing System (Open Sourced)
มุมมอง 2.1K5 หลายเดือนก่อน
Roblox place: www.roblox.com/games/16976208301/climbing-mec animation links: create.roblox.com/store/asset/17094335305/right-down-climbin create.roblox.com/store/asset/17094323681/down-left-climbing create.roblox.com/store/asset/17094197166/left-up-climbin create.roblox.com/store/asset/17094195091/up-right-climbing create.roblox.com/store/asset/17094042542/down-climbing create.roblox.com/store/...
Roblox Volleyball System Concept (+server side interaction)
มุมมอง 4216 หลายเดือนก่อน
#roblox #robloxedit #robloxgames #robux #animation #gamedev #robloxstudio #robloxmemes #robloxgameplay Took a few weeks but finally got it working!
ROBLOX funny moments - Plate Of Fate Mayhem (Remastered) EP.2
มุมมอง 1007 หลายเดือนก่อน
Tryna edit like buur #roblox #robloxedit #robloxgames #robux #animation #robloxmemes #robloxgameplay
ROBLOX How to make a vaulting system (TUTORIAL) - Script/Model/Animation Included
มุมมอง 4.5K8 หลายเดือนก่อน
its finally here, for those who wanted a quick tutorial heres the unpolished version. Sorry for the delay! #roblox #robloxedit #robloxgames #robux #robloxstudio #gamedev
ROBLOX FUNNY MOMENTS - PLATES OF FATE MAYHEM (REMASTERED)
มุมมอง 2598 หลายเดือนก่อน
I discover a good remake of a game named plate of fate mayhem, was a lot of fun an i made friends along the way, i guess you can see the plates were there fates we made along the way... #roblox #robloxedit #robloxmemes #robux #robloxgames #animation
ROBLOX vaulting system (script and animation)
มุมมอง 11K11 หลายเดือนก่อน
Hello! I am an upcoming animator/scripter looking trying to make a name in the roblox community. Hope you like this! #roblox #scripting #viral #animation #gaming #vaulting #robux #hardwork

ความคิดเห็น

  • @ethan2112_
    @ethan2112_ 2 วันที่ผ่านมา

    in the first video why did you assign variables on a different line im confused on why u didnt just do it how u did it in this video is it different?😅

  • @mnmlkou
    @mnmlkou 9 วันที่ผ่านมา

    i dont know how to do it very very bad i have links placed and R6 and animations dont work?

  • @Ryan-r7g
    @Ryan-r7g 13 วันที่ผ่านมา

    for some reason i cant see the body i've done everything right but its not working

  • @KenzoPunk-y6m
    @KenzoPunk-y6m 17 วันที่ผ่านมา

    can you do a tut on how to make a first person system where the body is invis but other player see your body And maybe also do a tut on the movment system

    • @70rnk
      @70rnk 16 วันที่ผ่านมา

      to answer your first question. Its possible to set the characters's children's transparency to 1. if you do it in a local script it should work. second of all i dont really understand what do you need from the movement system? is it one from my old videos?

  • @howtitigaming.0143
    @howtitigaming.0143 19 วันที่ผ่านมา

    Pls you can give Tutorial for "Advanced movement system" Pls pls pls

  • @triagetestaccount
    @triagetestaccount 19 วันที่ผ่านมา

    local RunService local Player local Character local Camera local Head local Humanoid local FPMD -- FPMaximumDistance local FPLT -- FirstPersonLocalTransparency RunService = game:GetService('RunService') Player = game.Players.LocalPlayer Character = Player.Character or Player.CharacterAdded:Wait() Camera = game.Workspace.CurrentCamera Head = Character:WaitForChild('Head') Humanoid = Character:WaitForChild('Humanoid') FPMD = 0.6 FPLT = 0 TPLT = 0 Humanoid.CameraOffset = Vector3.new(0, 0, -0.65) local function SetCharacterLocalTransparency(transparency) for i,v in pairs(Character:GetChildren()) do if (v:IsA('BasePart')) then v.LocalTransparencyModifier = transparency end end end RunService.RenderStepped:Connect(function() local isFirstPerson = (Head.CFrame.Position - Camera.CFrame.Position).Magnitude < FPMD if (isFirstPerson) then SetCharacterLocalTransparency(FPLT) Head.Transparency = 1 end end)

  • @myte0
    @myte0 20 วันที่ผ่านมา

    so you have to add the thing u want to vault over in the folder and it wont automatically find the thing to vault over if a key is pressed?

  • @argeliajacobo
    @argeliajacobo 20 วันที่ผ่านมา

    Thx bro

  • @TheBaldieCrewOfficial
    @TheBaldieCrewOfficial 22 วันที่ผ่านมา

    FOR THOSE LAZY PEOPLE WHO AIN'T SCRIPTING ALL OF THESE COPY AND PASTE THESE FirstPerson : local RunService local Player local Character local Camera local Head local Humanoid local FPMD -- FPMaximunDistance local FPLT -- FirstPersonLocalTransparency RunService = game:GetService('RunService') Player = game.Players.LocalPlayers Character = Player.Character or Player.CharacterAdded:Wait() Camera = game.Workspace.CurrentCamera Head = Character:WaitForChild('Head') Humanoid = Character:WaitForChild('Humanoid') FPMD = 1 FPLT = 0 TLPT = 0 Humanoid.CameraOffset = Vector3.new(0,0,-0.65) local function SetCharacterLocalTransparency(transparency) for i,v in pairs(Character:GetChildren()) do if (v:IsA('BasePart')) then v.LocalTransperency.Modifier = transparency end end end RunService.RenderStepped:Connect(function() local isFirstPerson = (Head.CFrame.Position - Camera.CFrame.Position).Magnitute < FPMD if (isFirstPerson) then SetCharacterLocalTransparency(FPLT) Head.Transparency = 1 end end) head and arms : local character local torso local player player = game.Players.LocalPlayer character = player.Character root = character:WaitForChild("HumanoidRootPart") run = game:GetService("RunService") cam = workspace.CurrentCamera torso = character:FindFirstChild("Torso") neck = torso:WaitForChild("Neck") right = torso:WaitForChild("Neck") left = torso:WaitForChild("Left Shoulder") y = neck.C0.Y z = right.C0.X runn.RenderStepped:Connect(function() local camdirec = root.CFrame:To0bjectspace(cam.CFrame).LookVector if neck then neck.C0 = CFrame.new(0,y,0) * CFrame.Angles(0,math.rad(0,math.rad(180),0) * CFrame.Angles(0,-camdirec.x, 0) * CFrame.Angles(-camdirec.Y,0,0) neck.C0 = neck.C0 * CFrame.Angles(math.rad(-90),0,0) right.C0 = CFrame.new(z,0.5,0) * CFrame.Angles(0,math.rad(0,math.rad(180),0) * CFrame.Angles(0,-camdirec.x, 0) * CFrame.Angles(-camdirec.Y,0,0) right.C0 = right.C0 * CFrame.Angles(0,math.rad(-90),math.rad(-90)) + Vector3.new(1,-0.5,0) left.C0 = CFrame.new(z,0.5,0) * CFrame.Angles(0,math.rad(0,math.rad(180),0) * CFrame.Angles(0,-camdirec.x, 0) * CFrame.Angles(-camdirec.Y,0,0) left.C0 = left.C0 * CFrame.Angles(0,math.rad(90),math.rad(90)) + Vector3.new(-1,-0.5,0) game:GetService("ReplicatedStorage").head:FireServer(neck.C0,right.C0, left.C0) end end) head : game:GetService("ReplicatedStorage").head.OnServerEvent:Connect(function(plr,txt,txt2,txt3) char = plr.Character torso = torso:WaitForChild("Neck").C0 = txt torso:WaitForChild("Right Shoulder").C0 = txt2 torso:WaitForChild("Left Shoulder").C0 = txt3 end)

    • @70rnk
      @70rnk 22 วันที่ผ่านมา

      @@TheBaldieCrewOfficial brother i shared the place ppl can just copy it

    • @argeliajacobo
      @argeliajacobo 20 วันที่ผ่านมา

      @@70rnk I don’t see the desk but ok

  • @_nexz2
    @_nexz2 22 วันที่ผ่านมา

    You will do part 4? add VFX or guns (reloading system, grenades) or also a running animation (with hands and weapons) if you want to do it...

  • @_nexz2
    @_nexz2 22 วันที่ผ่านมา

    The best channel of roblox studio tutorials +1 sub

  • @Akane39111
    @Akane39111 23 วันที่ผ่านมา

    Hey I know this vid is kinda old but just wanted to know if you could help me out? I followed all your steps but the animations don't work even though I'm in R6. It's not the biggest issue because my game will probably be in first person lock but if I want to add multiplayer support I can't have people phasing through barriers.

    • @yoai_mo
      @yoai_mo 12 วันที่ผ่านมา

      Did u spoof the anims??

  • @kyashift
    @kyashift 24 วันที่ผ่านมา

    Your thing works but only for your animations. Isn't there a way to make it without requiring your specific "guarding hands" anims

  • @虛無者
    @虛無者 25 วันที่ผ่านมา

    This NICE

  • @NaiveSchmidt
    @NaiveSchmidt 25 วันที่ผ่านมา

    This game seems like a very good concept!

    • @70rnk
      @70rnk 25 วันที่ผ่านมา

      @@NaiveSchmidt ty!!

    • @NaiveSchmidt
      @NaiveSchmidt 25 วันที่ผ่านมา

      @@70rnk You're welcome any time!

  • @d0m452
    @d0m452 28 วันที่ผ่านมา

    Yo so i got a question, how would you have different viewmodels for each weapon item you would have if its not a tool anymore

    • @70rnk
      @70rnk 27 วันที่ผ่านมา

      dif animationin replicated storage

  • @nguyenphuonganh-v6h
    @nguyenphuonganh-v6h 28 วันที่ผ่านมา

    pls make this a btg but very different from each other and make it unique

    • @70rnk
      @70rnk 27 วันที่ผ่านมา

      hi! what does btg means?

    • @nguyenphuonganh-v6h
      @nguyenphuonganh-v6h 27 วันที่ผ่านมา

      @@70rnk battlegorund

    • @70rnk
      @70rnk 27 วันที่ผ่านมา

      @@nguyenphuonganh-v6hyeah in working on something like that, a bit more then a btg tho (with story and etc)

  • @Hoadreanu
    @Hoadreanu 28 วันที่ผ่านมา

    imagine being so good youmastered scripting, modeling, mapmaking, animatioj and vfx

    • @70rnk
      @70rnk 27 วันที่ผ่านมา

      tysm! i still have a lot to learn

  • @archie-._.
    @archie-._. 28 วันที่ผ่านมา

    this is so sickk . waiting for part 2

    • @70rnk
      @70rnk 28 วันที่ผ่านมา

      tysm!

  • @dalpezack4031
    @dalpezack4031 28 วันที่ผ่านมา

    your animation id is private

  • @liansdump
    @liansdump 28 วันที่ผ่านมา

    yo how did you make that smart movement

    • @70rnk
      @70rnk 28 วันที่ผ่านมา

      @@liansdump I'll make a tutorial if you want it's actually pretty easy

    • @liansdump
      @liansdump 28 วันที่ผ่านมา

      @@70rnkomg please

    • @liansdump
      @liansdump 26 วันที่ผ่านมา

      please do

  • @FilipOwens
    @FilipOwens 28 วันที่ผ่านมา

    bro why anim in desc private

    • @70rnk
      @70rnk 28 วันที่ผ่านมา

      sorry abt that. when i get home ill link a roblox file so you can set it as your own. i didnt know roblox doesnt let us share animations from there web

    • @kthuludev
      @kthuludev 13 วันที่ผ่านมา

      @@70rnk can u link?

  • @WlastkasFan
    @WlastkasFan 29 วันที่ผ่านมา

    HOW ARE YOU NOT POPULAR YET???? (W video and edit)

    • @WlastkasFan
      @WlastkasFan 29 วันที่ผ่านมา

      also i dont have permission to acces your animations in desc can you help?

    • @70rnk
      @70rnk 29 วันที่ผ่านมา

      @@WlastkasFan yeah roblox can be annoying about it, im going to do my research to see if i can do something on my side. if i find a solution ilyk

    • @70rnk
      @70rnk 28 วันที่ผ่านมา

      @@WlastkasFan when i get home ill link in this desc a roblox file to make sure that you can publish the anim yourself and be the owner of the anim

  • @ausui3997
    @ausui3997 29 วันที่ผ่านมา

    How do you do the punch by using enum key instead of clicking your mouse. For example, I want it to punch when I press the key "F" instead of clicking.

    • @zqsmps
      @zqsmps 4 วันที่ผ่านมา

      make an equipped variable so that when the player equips the tool, set it to true, if they unequip it set it to false then type something like game:GetService("UserInputService").InputBegan:Connect(function(inp, gp) if gp then return end if inp.KeyCode and inp.KeyCode == Enum.KeyCode.F and equipped then --use the logic from the video to punch end end) or make a function that works like this local function input(inp, gp) if gp then return end if inp.KeyCode and inp.KeyCode == Enum.KeyCode.F and equipped then --punch logic here end end and then do game:GetService("UserInputService").InoutBegan:Connect(input) hope this helps!

  • @ratotumalacano7213
    @ratotumalacano7213 29 วันที่ผ่านมา

    lowk what im looking for, i just needed the local transparency and other stuff for my fps system, thx

  • @nguyenphuonganh-v6h
    @nguyenphuonganh-v6h หลายเดือนก่อน

    pls make my request pls bro last vid

    • @70rnk
      @70rnk 29 วันที่ผ่านมา

      @@nguyenphuonganh-v6h hi could you by any chance contact me via discord or instagram, i have a script ready that i think matches what you need. i wont do a video but ill send it to you with explanation.

    • @70rnk
      @70rnk 29 วันที่ผ่านมา

      @@nguyenphuonganh-v6h my insta is in my yt and my discord is rnk8876

  • @БДжигун
    @БДжигун หลายเดือนก่อน

    guys if you want aiming down sights here is example of how i done it: if aiming then local targetRightC0 = root.CFrame:ToObjectSpace(cam.CFrame) * CFrame.Angles(0, math.rad(90), 0) * CFrame.new(aimOffset) rightShoulder.C0 = rightShoulder.C0:Lerp(targetRightC0, 0.2) end

  • @Dougyl
    @Dougyl หลายเดือนก่อน

    What Do i Do About the shadow the part arent there

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@Dougyl elaborate im not sure i understand

  • @Wozox-n5s
    @Wozox-n5s หลายเดือนก่อน

    Dude, this tutorial is very useful and you continue, for example, it would be better to have a gun or something.

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@Wozox-n5s im introducing guns prob next ep

  • @hyxuka
    @hyxuka หลายเดือนก่อน

    This is so good, keep it up! Looking forward for more tutorials

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@hyxuka tysm!

  • @AqilDanish-lw1vq
    @AqilDanish-lw1vq หลายเดือนก่อน

    YEAAAAAAAAAAAAAAAAAHHHHHHHHHHHHHHHHHHHHHHHHH

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@AqilDanish-lw1vq yippie!!

  • @Boeingz_edits
    @Boeingz_edits หลายเดือนก่อน

    problem with the first vid: the animations you use are "sanitised" fix?

    • @70rnk
      @70rnk หลายเดือนก่อน

      i dont know maybe its roblox being stupid, ill check tmrw morning

    • @70rnk
      @70rnk 29 วันที่ผ่านมา

      i think i found, your issue might b because you have an animation with the same name as a part or literally anything in your worspace.

    • @ethan2112_
      @ethan2112_ 2 ชั่วโมงที่ผ่านมา

      @@70rnk u have to make the model public, same goes for all the other animations from the other tutorials

  • @archie-._.
    @archie-._. หลายเดือนก่อน

    LETS GOOOOOO

  • @Tjmonkx
    @Tjmonkx หลายเดือนก่อน

    Thx bro but please upload faster i want to use it for my game but i cant because it takes so long for the next one thanks tho

    • @70rnk
      @70rnk หลายเดือนก่อน

      yeah im done with summer, im thinking once a week!

    • @Tjmonkx
      @Tjmonkx หลายเดือนก่อน

      @@70rnk W

  • @70rnk
    @70rnk หลายเดือนก่อน

    GUYS! I FORGOT TO SAY IN THE VIDEO BUT ADD A String Value TO THE KNIFE AND NAME IT Damage!! then set it to any value you want the damage to be ALSO JOIN MY GROUP!! www.roblox.com/groups/4327350/Noob-Studio#!/about

    • @argeliajacobo
      @argeliajacobo 18 วันที่ผ่านมา

      Hey I got a idea to do the animations just do a model with the animations then do the link of the model to do animations

  • @Magentaseashell
    @Magentaseashell หลายเดือนก่อน

    didnt work at all for me, the first time i tested the game my body and everything was still invisible

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@Magentaseashell you can copy from my open sourced game to see what went wrong

  • @solidcover7186
    @solidcover7186 หลายเดือนก่อน

    Idea: Make buttons for mobile on the next tutorial.

  • @solidcover7186
    @solidcover7186 หลายเดือนก่อน

    How to set transparency of the hitbox to 1? also good tutorial, you earned my sub.

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@solidcover7186 block.Transparency = 1 when you summon the block

    • @solidcover7186
      @solidcover7186 หลายเดือนก่อน

      ​@@70rnkThanks dude!

    • @solidcover7186
      @solidcover7186 หลายเดือนก่อน

      Yo. Can i ask? Does this damage system work on npcs?

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@solidcover7186 it can, i managed to add this on one of my games, ill make sure to mention it on next video

  • @deep_hood_posts
    @deep_hood_posts หลายเดือนก่อน

    Amazing tutorial nigga 👍🔥🔥

  • @Drks2009
    @Drks2009 หลายเดือนก่อน

    part 3 pls

  • @yungbazerk
    @yungbazerk หลายเดือนก่อน

    aye bro i have a gun system and my fps is absolute ass could you help me out???

    • @70rnk
      @70rnk หลายเดือนก่อน

      sure what do you need help with

    • @yungbazerk
      @yungbazerk หลายเดือนก่อน

      @@70rnk i got discord

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@yungbazerkmessage me on roblox your user ill add you when im home

    • @yungbazerk
      @yungbazerk หลายเดือนก่อน

      @@70rnk Xypocalyptic

    • @yungbazerk
      @yungbazerk หลายเดือนก่อน

      @@70rnk yo you back yet?

  • @NOTBRATIC1
    @NOTBRATIC1 หลายเดือนก่อน

    LOVE ITT MAKE MORE WITH A GOOD FPS SYSTEM BETTER THEN FE GUN KIT THAT IS EZ TO SETUP LOVE THE TURTOR!!! ❤‍🩹

    • @70rnk
      @70rnk หลายเดือนก่อน

      ill do my best!

  • @archie-._.
    @archie-._. หลายเดือนก่อน

    yo part three when? :)

    • @70rnk
      @70rnk หลายเดือนก่อน

      @@archie-._. currently on a break but ill post one soon

    • @archie-._.
      @archie-._. หลายเดือนก่อน

      @@70rnk tyty

  • @stenvinkel
    @stenvinkel หลายเดือนก่อน

    this chanel is a scam i got an error and i have the exact same as he total SCAM

    • @affannow16
      @affannow16 หลายเดือนก่อน

      bro cant code

  • @stenvinkel
    @stenvinkel หลายเดือนก่อน

    line 17 didnt work for some reason