StudioLitezTutorials
StudioLitezTutorials
  • 20
  • 3 615
How to make Basic Orb VFX thats kills in studio lite-Part 3- [For Starters] | Credits To: Idk Man |
Subcribe to these dudes pls: ‪@Kuro_TheDev‬, ‪@RealDonateKingP‬, ‪@RealDashLite‬, ‪@Itz_FloppyFish‬
-----
Username: LTRYMORE |
Follow me in Roblox to Play With me! 😉
-----
Tags:
#robloxstudioscripting #tutorial #robloxscripter
------
Subcribe And Like For More Tutorials! 👍
Переглядів: 60

Відео

How to Make Basic Orb VFX In Studio Lite [For Starters] - Part 2 - | Credits To: Idk Man :(
Переглядів 7812 годин тому
Subcribe to these dudes pls: ‪@Kuro_TheDev‬, ‪@RealDonateKingP‬, ‪@RealDashLite‬, ‪@Itz_FloppyFish‬ Username: LTRYMORE | Follow me in Roblox to Play With me! 😉 Tags: #robloxstudioscripting #tutorial #robloxscripter Subcribe And Like For More Tutorials! 👍
How to make An VFX [For Starters] - Part 1- In Studio Lite | Credits To: Idk Man :(
Переглядів 8712 годин тому
Subcribe to these dudes pls: @Kuro_TheDev, @RealDonateKingP, @RealDashLite, @Itz_FloppyFish Username: LTRYMORE | Follow me in Roblox to Play With me! 😉 Tags: #robloxstudioscripting #tutorial #robloxscripter Subcribe And Like For More Tutorials! 👍
How to make Day And Night Button In Studio lite | Credits To: @Itz_FloppyFish |
Переглядів 14316 годин тому
LocalScript: (Insert In Textbutton) local GameLighting = game.Lighting local GUIButton = script.Parent GUIButton.MouseButton1Click:Connect(function() if GameLighting.ClockTime 12 then Change 12 to whatever you want your day time to be GameLighting.ClockTime = 22 Change 22 to whatever you want your night time to be, keep in mind its all displayed in 24h time, meaning 22 = 10pm GUIButton.Text = "...
How to Make an Trampoline in Studio lite! |Credits To: @Itz_FloppyFish |
Переглядів 9521 годину тому
Normal Script: (Insert In The Part) local Part = script.Parent Part.Velocity = Vector3.new(0, 1000, 0) Change 1000 to how ever high you want the player go when the player steps on the part Like If You Enjoyed The Tutorial! 😉 | Roblox Username: LTRYMORE | Follow Me! 😁 Tags: #robloxscripting #robloxstudioscripting #roblox #scriptinginroblox #scripters #studiolite #tutorial Have An Nice Day! ⭐️
How To Create Sprint Button In Studio Lite / Credits to: @kdanDev
Переглядів 13614 днів тому
LocalScript: 📔 (Insert In Textbutton) local UserInputService = game:GetService("UserInputService") local Button = script.Parent local Player = game.Players.LocalPlayer local speed = 32 I have set it to 32 by default as it is x2 speed but you can change it to whatever you want :) Button.Activated:Connect(function() local humanoid = Player.Character.Humanoid if not humanoid then return end if hum...
How To Make 1+ Size Every Second In Studio Lite (working 2024) / Credits To: @Kuro_TheDev
Переглядів 9214 днів тому
Script: 📔 (Insert In ServerScriptService) Script by Kuro Lite Put this Goofy script in ServerScriptService Don't forget to like and subscribe ;3 local function setupLeaderstats(player) local leaderstats = Instance.new("Folder") leaderstats.Name = "leaderstats" leaderstats.Parent = player local sizeStat = Instance.new("IntValue") sizeStat.Name = "Size" sizeStat.Value = 1 Hey fellas Dev , you can...
How To Make Grab System In Studio Lite / Credits To: @Huxz-1waki2
Переглядів 40114 днів тому
Script: 📔 (Insert In The ProximityPrompt 🟦) Not my script! grabbed = false currentPlayer = "" part = script.Parent.Parent script.Parent.Triggered:Connect(function(player) PICK UP if grabbed false then currentPlayer = player.Name local head = player.Character.HumanoidRootPart local x = head.CFrame.X local y = head.CFrame.Y -0 Adjust the height to your liking, the "-" letter is needed. local z = ...
How To Create An Play Button Credits To: @RealDonateKingP
Переглядів 13321 день тому
LocalScript: 📗(insert In The TextButton) script.Parent.Activated: Connect (function() script.Parent.Parent.Visible = false end) Roblox UserName: Sock 😄 Follow Me If You Want Play With Me! 👍⭐️ Tags: #robloxscripter #tutorial #game #robloxscripting #robloxstudioscripting #toolscript
How To Make OverHead Name Tags In Studio Lite! Credits To: @RealDashLite
Переглядів 36221 день тому
Script (insert in serverscript) This script creates a BillboardGui above a player's head when they join game.Players.PlayerAdded:Connect(function(player) Wait for the character to load in the game player.CharacterAdded:Connect(function(character) Create a BillboardGui local billboard = Instance.new("BillboardGui") billboard.Parent = character.Head Attach to the player's head billboard.Adornee =...
How To Make Open And Close GUI In Studio Lite Credits To: @JumboTutorial
Переглядів 27121 день тому
LocalScript 📔: (insert In The ScreenGui) local SGui = script.Parent local Frame = SGui:WaitForChild("Frame") local Button = SGui:WaitForChild("TextButton") Button.MouseButton1Up:Connect(function() Frame.Visible = not Frame.Visible end) ⚠️ Note!: Dont Forget To Insert LocalScript In The ScreenGui ⚠️ Note 2!: To Work Insert A Button In The ScreenGui UserName: Sock ⭐️ Tags: (ignore) #scriptinginro...
How To Make An Part Spin In Studio Lite Credits to: @Itz_FloppyFish
Переглядів 12628 днів тому
Script: (insert In The Part) local TurningSpeed = 10 You can change how fast you want the part to spin here while true do script.Parent.CFrame = script.Parent.CFrame * CFrame.Angles(0, math.rad(TurningSpeed), 0) wait(0.01) This determines how often the part turns (Updates the part to turn every 0.01 seconds, The lower the number the better transition) end Love Y’all! ❤️
How to Make Dash Button! Credits to: @SLNStars
Переглядів 119Місяць тому
Local Script 📜: (insert In TextButton) local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local dashSpeed = 50 local dashDuration = 0.2 local cooldown = 1 local canDash = true local button = script.Parent Référence au TextButton local function dash() if canDash then canDash = false local ...
How to Make Text Changing Color In Studio Lite! Credits to @Itz_FloppyFish
Переглядів 162Місяць тому
Local Script 📜 (put in TextLabel/Textbutton) while true do script.Parent.TextColor3 = Color3.new(255/255,0/255,0/255) for i = 0,255,10 do wait() script.Parent.TextColor3 = Color3.new(255/255,i/255,0/255) end for i = 255,0,-10 do wait() script.Parent.TextColor3 = Color3.new(i/255,255/255,0/255) end for i = 0,255,10 do wait() script.Parent.TextColor3 = Color3.new(0/255,255/255,i/255) end for i = ...
How To Make Crawling Button Credits To: @Kuro_TheDev
Переглядів 139Місяць тому
LocalScript 📔 (put inside Textbutton) local button = script.Parent local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local animationId = "rbxassetid://282574440" local animation = Instance.new("Animation") animation.AnimationId = animationId local animationTrack = humanoid:LoadAnimation(...
How To Make An SpeedPad Credits To: @RealDonateKingP
Переглядів 92Місяць тому
How To Make An SpeedPad Credits To: @RealDonateKingP
How To Make An Friend Inviter! Credits To: @Itz_FloppyFish
Переглядів 97Місяць тому
How To Make An Friend Inviter! Credits To: @Itz_FloppyFish
How to Make Tool Credits To: @GameP1ayer_0001
Переглядів 117Місяць тому
How to Make Tool Credits To: @GameP1ayer_0001
How to Make Crouch Button Credits To: @RealDonateKingP
Переглядів 134Місяць тому
How to Make Crouch Button Credits To: @RealDonateKingP
How to make shiftlock button in studio lite credits to: @GameP1ayer_0001
Переглядів 806Місяць тому
How to make shiftlock button in studio lite credits to: @GameP1ayer_0001

КОМЕНТАРІ

  • @NickasYT_3726
    @NickasYT_3726 5 годин тому

    How to do you know app the script i want to be like you post video and become youtuber please teach ne please

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

    -- LocalScript inside the ShiftLockButton local player = game.Players.LocalPlayer local camera = game.Workspace.CurrentCamera local userInputService = game:GetService("UserInputService") local runService = game:GetService("RunService") local shiftLockActive = false local shiftLockButton = script.Parent -- Refers to the TextButton -- Toggle shift lock function local function toggleShiftLock() shiftLockActive = not shiftLockActive if shiftLockActive then -- Shift Lock active shiftLockButton.Text = "Shift Lock: ON" else -- Disable Shift Lock, back to normal mode shiftLockButton.Text = "Shift Lock: OFF" end end -- Function to handle camera and character movement in shift lock mode runService.RenderStepped:Connect(function() if shiftLockActive and player.Character then local character = player.Character local humanoidRootPart = character:WaitForChild("HumanoidRootPart") -- Allow the camera to move freely, but rotate the player to face the camera's direction local cameraLookDirection = Vector3.new(camera.CFrame.LookVector.X, 0, camera.CFrame.LookVector.Z).unit humanoidRootPart.CFrame = CFrame.new(humanoidRootPart.Position, humanoidRootPart.Position + cameraLookDirection) end end) -- Connect the button click to toggle Shift Lock shiftLockButton.MouseButton1Click:Connect(toggleShiftLock) This script

  • @AzozAlharbi-ye1fu
    @AzozAlharbi-ye1fu 3 дні тому

    imma unsub you just steal videos from idkman and kuro dev

  • @AzozAlharbi-ye1fu
    @AzozAlharbi-ye1fu 5 днів тому

    how do i make neon blocks

  • @Diegardox3000
    @Diegardox3000 5 днів тому

    Thats good

  • @StudioLiteTutorial
    @StudioLiteTutorial 5 днів тому

    sorry if VFX is bad but it’s kinda bad I know. [idk how to make VFX but I’ll Make It Like This Please Dont Hate On Me!]

  • @Kuro_TheDev
    @Kuro_TheDev 7 днів тому

    Skibidi skibidi Hawk Tuah ah Gyat 🤑

  • @Senju_Guro
    @Senju_Guro 7 днів тому

  • @ranjanisuresh8376
    @ranjanisuresh8376 9 днів тому

    First🎉

  • @Theholywaffle_guy
    @Theholywaffle_guy 9 днів тому

    Tysm for the tut

  • @RealDashLite
    @RealDashLite 10 днів тому

    Nice

  • @alexanderz15
    @alexanderz15 10 днів тому

    Thx

  • @RealDashLite
    @RealDashLite 12 днів тому

    thanks

  • @DummyTester-h9v
    @DummyTester-h9v 13 днів тому

    Bro pls ma ea tut how to make slide

  • @AzozAlharbi-ye1fu
    @AzozAlharbi-ye1fu 14 днів тому

    Hey bro can you show how to make guns! Like in prison life! I support barzil❤

  • @AzozAlharbi-ye1fu
    @AzozAlharbi-ye1fu 17 днів тому

    Oh can you atleast make a tutorial for how to put hd admin in studio lite

  • @AzozAlharbi-ye1fu
    @AzozAlharbi-ye1fu 17 днів тому

    Bruh make a rng system not that

    • @StudioLiteTutorial
      @StudioLiteTutorial 17 днів тому

      @@AzozAlharbi-ye1fu It’s Beacuse The Script For Rng System Is Too Long To Put In Description So Theres Gonna Be No Rng Tutorial Sorry!

  • @viet_avgeek
    @viet_avgeek 17 днів тому

    Can we change the font

  • @mateusedgar666
    @mateusedgar666 24 дні тому

    how to make the floor is lava in studio lite

  • @RealDonateKingP
    @RealDonateKingP 24 дні тому

    What's this outro then ppl keeps saying I steal your outro🤡 ua-cam.com/video/FSV49swJF7Q/v-deo.htmlsi=2a9OfGQ_w4p1zSHB

  • @RealDonateKingP
    @RealDonateKingP 24 дні тому

    Okay it's good that all my outro are from panzoid and there's a free outro video which u used

  • @MohsenHussaini-pq4he
    @MohsenHussaini-pq4he 24 дні тому

    Thank you

  • @StupidEggGuy
    @StupidEggGuy 26 днів тому

    Can you send me a script that will make that smaller

  • @RealDonateKingP
    @RealDonateKingP 26 днів тому

    It's good that you gave credits because jumbo is my friend I know him

  • @RealDonateKingP
    @RealDonateKingP 26 днів тому

    I made the end outro in panzoid and u stole it...

    • @Notbloxxy69
      @Notbloxxy69 24 дні тому

      More like "you stole it" becuase its a capcut template. You nor him has the copyright for that

    • @RealDonateKingP
      @RealDonateKingP 24 дні тому

      @Notbloxxy69 He used template I used panzoid panzoid DOENST have copyrighted outros and intros

    • @Notbloxxy69
      @Notbloxxy69 23 дні тому

      @@RealDonateKingP but, did you make it?

    • @RealDonateKingP
      @RealDonateKingP 22 дні тому

      Yeah everyone can use it my brother made it years ago​@@Notbloxxy69

  • @RealDonateKingP
    @RealDonateKingP 26 днів тому

    End outro Stolen

  • @x1mio3but2
    @x1mio3but2 26 днів тому

    Is there anyway I can copy and paste scripts

  • @RealDashLite
    @RealDashLite 26 днів тому

  • @RealityLite
    @RealityLite 27 днів тому

    Good tutorial

  • @Imjustgonnamelt
    @Imjustgonnamelt 27 днів тому

    I think it doesn’t work :(

  • @RealDashLite
    @RealDashLite 28 днів тому

    wait min he did not make it tho im not hateing but he did not make it

    • @Traymuncher
      @Traymuncher 22 дні тому

      He gave credits in the title

    • @RealDashLite
      @RealDashLite 12 днів тому

      ⁠@@Traymunchernoooooooooooooooooooooooooooooooo ok i need to stop i mean sLN dont make it

  • @Invintory-paw
    @Invintory-paw Місяць тому

    How do you make a text above an npc

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

    Vote For Next Tutorial!: Lighting Tutorial Gamepass Button Tutorial!

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

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

    How to make a lighting Btw good video 👍❤

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

    Wow👍👍

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

    Cool video

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

    I liked ur video

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

    Tysm

  • @Monster_Guy-op6nr
    @Monster_Guy-op6nr Місяць тому

    Another banger

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

    31

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

      Brk he did credits to the person who did it so he didnt steala d some people maybe cant see some vids????

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

      So swoxnyy dint be mean he can also just be trying it??

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

      @@NoudineHere DUDE, I JUST ASKED FOR GAMEPASS FROM ONE CHANNEL AND THIS CONTENT PRODUCER RESPONDED BADLY (I JUST ASKED FOR GAMEPASS FOR MY BROTHER'S BIRTHDAY) BE UNDERSTANDING!

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

      @@SwroxnyyYTcalm down pls

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

      @@SwroxnyyYT also show proof he said bad things

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

    Where’s the script bro why lying??

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

    Lol Face Reveal At 1:28