4servTheDev
4servTheDev
  • 28
  • 9 271
How To Make A Exploding Part On Touch In Roblox Studio!
How To Make A Exploding Part On Touch In Roblox Studio!
Support me by Subscribing :)
Profile: www.roblox.com/users/48647810...
Group: www.roblox.com/communities/35...
Script:
script.Parent.Touched:Connect(function(hit)
if hit and hit.Parent:FindFirstChildOfClass("Humanoid") then
local explosion = Instance.new("Explosion")
explosion.Position = script.Parent.Position
explosion.Parent = game.Workspace
end
end)
Tags (Ignore) Roblox Studio Turtorial
Roblox Studio
Roblox Game Development
Roblox Tutorial
Roblox Scripting
Game Design
Lua Programming
Roblox GUI
Roblox Coding
Roblox Scripting Tutorial
Roblox Studio Tips
Game Development Tutorial
Roblox UI Design
Roblox Studio Basics
Roblox Studio Advanced
Scripting for Beginners
Roblox Developer
Game Mechanics
Roblox Modeling
Roblox Studio Game Mechanics
Roblox Studio UI Design Tips
#lua #scripting #robloxstudio
มุมมอง: 31

วีดีโอ

How To Make A UI Fade In/Out Animation In Roblox Studio!
มุมมอง 4212 ชั่วโมงที่ผ่านมา
How To Make A UI Fade In/Out Animation In Roblox Studio! Support me by Subscribing :) Free Model: create.roblox.com/store/asset/86808558453453/UI-Fade-InOut-Animation Please do not resell this model. You may use it in your games. Profile: www.roblox.com/users/4864781048/profile Group: www.roblox.com/communities/35352574/silly-gilly-game-productions#!/about Tags (Ignore) Roblox Studio Turtorial ...
How To Make A Realistic Sprint System In Roblox Studio!
มุมมอง 77814 ชั่วโมงที่ผ่านมา
How To Make A Realistic Sprint System In Roblox Studio! Support me by Subscribing :) Free Model: create.roblox.com/store/asset/92544428349711/Realistic-Sprint-System Please do not resell this model. You may use it in your games. Profile: www.roblox.com/users/4864781048/profile Group: www.roblox.com/communities/35352574/silly-gilly-game-productions#!/about Tags (Ignore) Roblox Studio Turtorial R...
How To Make A FOV Slider In Roblox Studio!
มุมมอง 77919 ชั่วโมงที่ผ่านมา
How To Make A FOV Slider In Roblox Studio! Support me by Subscribing :) Free Model: create.roblox.com/store/asset/116843967653896/FOV-Slider Please do not resell this model. You may use it in your games. Profile: www.roblox.com/users/4864781048/profile Group: www.roblox.com/communities/35352574/silly-gilly-game-productions#!/about Tags (Ignore) Roblox Studio Turtorial Roblox Studio Roblox Game ...
How To Make A Music Player In Roblox Studio!
มุมมอง 9121 ชั่วโมงที่ผ่านมา
How To Make A Music Player In Roblox Studio! Inspired by WheezWasTaken Support me by Subscribing :) Free Model: create.roblox.com/store/asset/124763149967746/Music-Player Please do not resell this model. You may use it in your games. Profile: www.roblox.com/users/4864781048/profile Group: www.roblox.com/communities/35352574/silly-gilly-game-productions#!/about Tags (Ignore) Roblox Studio Turtor...
How To Make A FPS Counter In Roblox Studio!
มุมมอง 406วันที่ผ่านมา
How To Make A FPS Counter In Roblox Studio! Support me by Subscribing :) TH-cam does not allow angled brackets in their description, so please replace the "Greater than" With the greater than symbol, and the same thing with less than, Thanks! local fpsLabel = script.Parent local frameCount = 0 local lastTime = tick() local function updateFPS() while true do frameCount = frameCount 1 if tick() -...
How To Make A Trip Part In Roblox Studio!
มุมมอง 78วันที่ผ่านมา
How To Make A Trip Part In Roblox Studio! Support me by Subscribing :) local tripPart = script.Parent tripPart.Touched:Connect(function(hit) local character = hit.Parent local humanoid = character:FindFirstChild("Humanoid") local humanoidRootPart = character:FindFirstChild("HumanoidRootPart") if humanoid and humanoidRootPart then humanoid.PlatformStand = true wait(0.5) humanoid.PlatformStand = ...
How To Make A Set FOV In Roblox Studio!
มุมมอง 249วันที่ผ่านมา
How To Make A Set FOV In Roblox Studio! Support me by Subscribing :) Better Version: th-cam.com/video/XZN5-KFYTuo/w-d-xo.html&ab_channel=4servTheDev local textBox = script.Parent local camera = workspace.CurrentCamera textBox.FocusLost:Connect(function(enterPressed) if enterPressed then local inputFOV = tonumber(textBox.Text:match("%d ")) if inputFOV then camera.FieldOfView = math.clamp(inputFO...
How To Make A Simple Kill Brick In Roblox Studio!
มุมมอง 16414 วันที่ผ่านมา
How To Make A Simple Kill Brick In Roblox Studio! Support me by Subscribing :) local killBrick = script.Parent killBrick.Touched:Connect(function(hit) local character = hit.Parent local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.Health = 0 end end) Tags (Ignore) Roblox Studio Turtorial Roblox Studio Roblox Game Development Roblox Tutorial Roblox Scripting Game Des...
How To Make A Gamepass Button In Roblox Studio!
มุมมอง 8514 วันที่ผ่านมา
How To Make A Gamepass Button In Roblox Studio! Support me by Subscribing :) local MarketplaceService = game:GetService("MarketplaceService") local player = game.Players.LocalPlayer local gamePassId = 1038208752 Change ID To Your Gamepass ID script.Parent.MouseButton1Click:Connect(function() MarketplaceService:PromptGamePassPurchase(player, gamePassId) end) Tags (Ignore) Roblox Studio Turtorial...
How To Make A Teleport Part In Roblox Studio!
มุมมอง 5814 วันที่ผ่านมา
How To Make A Teleport Part In Roblox Studio! Support me by Subscribing :) local teleporters = script.Parent:GetChildren() local teleporter1 = teleporters[1] local teleporter2 = teleporters[2] local debounceTime = 1 local debouncedPlayers = {} local function teleportPlayer(otherPart, destination) local character = otherPart.Parent if character and character:FindFirstChild("Humanoid") then local...
How To Make A Speed Boost Pad In Roblox Studio!
มุมมอง 7914 วันที่ผ่านมา
How To Make A Speed Boost Pad In Roblox Studio! Support me by Subscribing :) local part = script.Parent local boostDuration = 3 How Long The Boost Lasts local newSpeed = 50 Set Speed For Boost part.Touched:Connect(function(hit) local humanoid = hit.Parent:FindFirstChild("Humanoid") if humanoid and not humanoid:GetAttribute("SpeedBoostActive") then humanoid:SetAttribute("SpeedBoostActive", true)...
How To Make A Custom Health Bar In Roblox Studio!
มุมมอง 21514 วันที่ผ่านมา
How To Make A Custom Health Bar In Roblox Studio! Support me by Subscribing :) local player = game.Players.LocalPlayer local humanoid = player.Character:WaitForChild("Humanoid") local healthBar = script.Parent local backgroundBar = healthBar.Parent local healthText = backgroundBar:FindFirstChild("HealthText") local tweenService = game:GetService("TweenService") local function updateHealthBar() ...
How To Make A Simple Damage Brick In Roblox Studio!
มุมมอง 15114 วันที่ผ่านมา
How To Make A Simple Damage Brick In Roblox Studio! Support me by Subscribing :) local part = script.Parent local damage = 25 Change Damage If You Want It To Deal More/Less part.Touched:Connect(function(hit) local character = hit.Parent local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid:TakeDamage(damage) end end) Tags (Ignore) Roblox Studio Turtorial Roblox Studio ...
How To Make A Random Music Player In Roblox Studio!
มุมมอง 21014 วันที่ผ่านมา
How To Make A Random Music Player In Roblox Studio! Support me by Subscribing :) Better Version: th-cam.com/video/-M0JKYh5tFs/w-d-xo.htmlsi=wMDSb_caJkA9Qd3p local nowPlayingLabel = script.Parent local songs = { {name = "Sunset Chill (Bed Version)", soundId = "rbxassetid://9046862941"}, {name = "Poolside", soundId = "rbxassetid://9046863253"}, {name = "No Smoking", soundId = "rbxassetid://904710...
How To Make A Toggle Day/Night Button In Roblox Studio!
มุมมอง 16621 วันที่ผ่านมา
How To Make A Toggle Day/Night Button In Roblox Studio!
How To Make A "Remove Textures" Button In Roblox Studio!
มุมมอง 39121 วันที่ผ่านมา
How To Make A "Remove Textures" Button In Roblox Studio!
How To Make A Volume Slider In Roblox Studio!
มุมมอง 54421 วันที่ผ่านมา
How To Make A Volume Slider In Roblox Studio!
How To Make A "Disable Shadows" Button in Roblox Studio!
มุมมอง 12421 วันที่ผ่านมา
How To Make A "Disable Shadows" Button in Roblox Studio!
How To Make A Draggable UI In Roblox Studio! (V2)
มุมมอง 40021 วันที่ผ่านมา
How To Make A Draggable UI In Roblox Studio! (V2)
How To Make Functional UI In Roblox Studio!
มุมมอง 142ปีที่แล้ว
How To Make Functional UI In Roblox Studio!
How To Make A X Button In Roblox Studio!
มุมมอง 109ปีที่แล้ว
How To Make A X Button In Roblox Studio!
How To Make A Button Bigger When Hovered Over In Roblox Studio!
มุมมอง 221ปีที่แล้ว
How To Make A Button Bigger When Hovered Over In Roblox Studio!
How To Make A Draggable UI In Roblox Studio!
มุมมอง 2.9Kปีที่แล้ว
How To Make A Draggable UI In Roblox Studio!
How To Make A Interact To Open UI In Roblox Studio!
มุมมอง 721ปีที่แล้ว
How To Make A Interact To Open UI In Roblox Studio!
How To make A Sound Whenever You Click A Button In Roblox Studio!
มุมมอง 40ปีที่แล้ว
How To make A Sound Whenever You Click A Button In Roblox Studio!
How to make a Click Button In Roblox Studio!
มุมมอง 30ปีที่แล้ว
How to make a Click Button In Roblox Studio!
How to make a Cash Display in Roblox Studio!
มุมมอง 90ปีที่แล้ว
How to make a Cash Display in Roblox Studio!

ความคิดเห็น

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

    goat 🙏

  • @IntroDev-01
    @IntroDev-01 2 วันที่ผ่านมา

    Lol just came for the layout's UI since Im a UI developer

  • @alphalightstorm8322
    @alphalightstorm8322 3 วันที่ผ่านมา

    Is it possible to add clicking sound as it dragging?

  • @ItzVengen
    @ItzVengen 3 วันที่ผ่านมา

    for some reason when i just hold the shift it just keeps sprinting any idea why?

    • @ItzVengen
      @ItzVengen 3 วันที่ผ่านมา

      its because of first person i think any idea how to fix this?

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

      @@ItzVengen because of the duration? You have to hold shift until it fatigues

    • @ItzVengen
      @ItzVengen 3 วันที่ผ่านมา

      @@4servTheDev yea i did and when it fatigues it bugs out in first person and the Fov bugs out to and i can just keep sprinting

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

      @@ItzVengen well thats strange, it worked in 1st person for me. Did you edit the script or anything?

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

    Yo that’s really nice

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

    nice script man! I’m making a horror gane and you’re in the credits

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

      @@txmes2 cool! Let me know when its out

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

    Does it supports mobile?

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

      @@ED_CreationsOfficial no sadly, you have to make a button

  • @Crafter9884
    @Crafter9884 5 วันที่ผ่านมา

    thanks for free fov slider but would of been nice if it was pre-scaled

  • @HopfulDeHopfulson
    @HopfulDeHopfulson 5 วันที่ผ่านมา

    Video idea : how to make map voting system/round system

  • @Kostric2_Playz
    @Kostric2_Playz 6 วันที่ผ่านมา

    Wow that’s really nice

  • @CocoaSnack
    @CocoaSnack 7 วันที่ผ่านมา

    Dude... I'm making a thumbnail plugin, and I was searching up videos on how to create a slider. I was about to add an FOV slider, and you just made a video on it... Insane timing.

  • @matiaszurita9841
    @matiaszurita9841 8 วันที่ผ่านมา

    local textBox = script.Parent local camera = workspace.CurrentCamera textBox.FocusLost:Connect(function(enterPressed) if enterPressed then local inputFOV = tonumber(textBox.Text:match("%d+")) if inputFOV then camera.FieldOfView = math.clamp(inputFOV, 1, 120) textBox.Text = "FOV: " .. camera.FieldOfView

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

      It was already in the description lol

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

    Better Version: th-cam.com/video/XZN5-KFYTuo/w-d-xo.html&ab_channel=4servTheDev

  • @Kostric2_Playz
    @Kostric2_Playz 8 วันที่ผ่านมา

    Nice 🎉

  • @Quan-2
    @Quan-2 8 วันที่ผ่านมา

    keep it up man!

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

    thx

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

    IT DIDNT WORK

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

      @@FordF150guy7 you didnt replace the greater than and equal to with the symbols didnt you?

    • @QdVtsSeVc
      @QdVtsSeVc วันที่ผ่านมา

      @@FordF150guy7 It works for me, you did it wrong

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

    Better version: th-cam.com/video/-M0JKYh5tFs/w-d-xo.htmlsi=wMDSb_caJkA9Qd3p

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

    Wow thank you so much!

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

    i do not believe this is 1080p

  • @ItsFoxyJo.
    @ItsFoxyJo. 10 วันที่ผ่านมา

    W

  • @Real_Sigma245
    @Real_Sigma245 10 วันที่ผ่านมา

    BRO WHY UR SCAMMET KID ME COLOR DONT APPAR ON SCREEN FACK UR KID UR ARE SCAMMER THE BAR WITH COLOR DONY EXIST NOW KIDDDDDD

  • @CurvedFlame
    @CurvedFlame 10 วันที่ผ่านมา

    how to make a button that shows a settings gui pls (i will love you forever if you do this)

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

      th-cam.com/video/Tf8eUEvEOas/w-d-xo.html&ab_channel=4servTheDev Literally just a UI script lol

  • @QdVtsSeVc
    @QdVtsSeVc 11 วันที่ผ่านมา

    Hey 4servTheDev, I think you are a talented scripter and wanted to ask if you would like to hire me for free. I am 4,5 years of experience builder, and I would like to make a game for you. BTW new sub❤

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

      Yeah sure! why not, i have a backrooms project called "Infinite Horizon" and i would love to hire you! what is your discord?

    • @QdVtsSeVc
      @QdVtsSeVc 11 วันที่ผ่านมา

      @4servTheDev I have a bit more experience about backrooms game because I tried but failed many because I can't script

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

      @@QdVtsSeVc I am currently working on it right now, we have a sprint script and camera scripts. Im currently doing alot of Commissions so i dont really have time to work on the game. Add me on discord, 4servz

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

    TH-cam does not allow angled brackets in their description, so please replace the "Greater than" With the greater than symbol, and the same thing with less than, Thanks!

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

    nice vid

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

    Tysm man, simple and functional!

  • @BenWheeler-f9l
    @BenWheeler-f9l 14 วันที่ผ่านมา

    Thank you!❤

  • @CatMeIIonShark
    @CatMeIIonShark 14 วันที่ผ่านมา

    Great video, one thing i would recomend is to make your thumnails with less empty space so basicaly removing the white backround of it

  • @the69theldenlord99
    @the69theldenlord99 15 วันที่ผ่านมา

    Bro please let the text be on screen for a couple extra seconds

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

      @the69theldenlord99 pause, i gotta keep the video short for no reason

  • @Kostric2_Playz
    @Kostric2_Playz 15 วันที่ผ่านมา

    Nice 👍

  • @JJJJJJJJJ01
    @JJJJJJJJJ01 17 วันที่ผ่านมา

    I didn't understand, I did all the steps like you did and I couldn't make it work

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

      @@JJJJJJJJJ01 well i think you did something wrong, the other people’s script worked. It may be because of the order you put the frames in

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

      Or you didnt place “greater than and equal to” with their symbols

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

      @ ohhh maybe that's it

    • @Link2marioYT
      @Link2marioYT 15 วันที่ผ่านมา

      @@4servTheDev What does that mean mabye i put the frames in wrong How do i put them in correctly?

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

      @Link2marioYT i meant put the frames in order

  • @Kostric2_Playz
    @Kostric2_Playz 17 วันที่ผ่านมา

    Really nice vid ❤

  • @3mory567
    @3mory567 17 วันที่ผ่านมา

    First one

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

    w

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

    thank u

  • @Kenimodd
    @Kenimodd 21 วันที่ผ่านมา

    you're my fucking saviour

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

    TH-cam does not allow angled brackets in their description, so please replace the "Greater than" With the greater than symbol, and the same thing with less than, Thanks!

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

    Nice video ❤

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

    porfect broooo

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

    just insert uidragdetect in the gui fragment bro

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

    How do you make a gui that does something when you drag the draggable gui onto it? Like if you wanted to make a minigame where you have to drag items into a box or drag trash into a trash bin using a gui?

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

      Uhm, i dont quite understand

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

    Yo could I use this

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

      what is the point of posting this if people cant use it?

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

      ⁠fair

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

    TH-cam does not allow angled brackets in their description, so please replace the "Greater than" With the greater than symbol, and the same thing with less than, Thanks!