How To Make a Basic GRENADE TOOL In Roblox Studio | Roblox Studio Tutorial

Поділитися
Вставка
  • Опубліковано 19 січ 2025

КОМЕНТАРІ • 18

  • @StuffyDev
    @StuffyDev  9 місяців тому +4

    This tutorial was done in one take at 11 at night and is very scuffed, so i hope you can get any sort of value out of it 😭😭

  • @SpiderHasSpawned
    @SpiderHasSpawned 5 місяців тому +2

    I swear it's a crime to be this underrated😭

  • @tommaso9402
    @tommaso9402 9 місяців тому

    I’m not really a scripter but I’ve been loving your videos and tutorials especially the dev logs! Keep it up

  • @Deantheleek006
    @Deantheleek006 Місяць тому

    I'd like a tutorial for a ViewModel for this and how to animate this. Can you make/recommend one?

  • @DeadSoldierNE
    @DeadSoldierNE 2 дні тому

    I think I made a explosion jump coil instead of a grenade...

  • @QuentinByrne
    @QuentinByrne 8 місяців тому

    when i throw the grenaed it goes to my right instead of in front of me how would a fix this?

  • @FLAIR114
    @FLAIR114 9 місяців тому

    I love your Videos

  • @FLAIR114
    @FLAIR114 9 місяців тому

    can you use the viewmodel from your video and make it have animations and make it shoot

    • @StuffyDev
      @StuffyDev  9 місяців тому

      using something like moon animator or blender you can, unfortunately im not much of an animator so i can't give a good tutorial on anything like that, although there are many other tutorials on how to animate a view model

    • @FLAIR114
      @FLAIR114 9 місяців тому

      @@StuffyDevno not animation just how to put an animating script into a gun script

    • @FLAIR114
      @FLAIR114 9 місяців тому

      you dont have to do animations

    • @FLAIR114
      @FLAIR114 9 місяців тому

      just where I can put the animation id in

    • @keppydeppy
      @keppydeppy 8 місяців тому

      ​@@FLAIR114 at around 7 mins in this vid you can see the script used for animations
      ua-cam.com/video/nKC3-pAtN5g/v-deo.htmlsi=utzwK1D_jtQElwOu

  • @starglassboy
    @starglassboy 7 місяців тому

    cant throw the grenade

  • @johngrant9370
    @johngrant9370 3 місяці тому

    can’t throw the grenade

  • @user-ih8il6ug2q
    @user-ih8il6ug2q 17 днів тому

    local player = game.Players.LocalPlayer
    local tool = script.Parent
    local remote = tool:WaitForChild("RemoteEvent")
    tool.Activated:Connect(function()
    local mouse = player:getmouse()
    remote:fireserver(mouse.hit.position)
    end)
    local tool = script.parent
    local handle = tool:waitforchild("handle")
    local remote = tool:waitforchild("remoteevent")
    remote.onserverevent:(function(player, pos)
    local grenade = handle:clone()
    grenade.cancollide = true
    grenade.cframe.new(handle.position, pos)
    grenade.parent = workspace

    local bv = Instance.new("BodyVelocity")
    bv.maxforce = Vector3.new(math.huge, math.huge, math.huge)
    bv.velocity = grenade.cframe.lookvector * 100
    bv.parent = grenade
    end)
    thank me later

  • @johngrant9370
    @johngrant9370 3 місяці тому

    can’t throw the grenade