- 20
- 3 615
StudioLitezTutorials
Приєднався 2 кві 2024
I make studio lite tutorials for fun :D Im A Brazlian Guy 🇧🇷
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! 👍
-----
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
How to do you know app the script i want to be like you post video and become youtuber please teach ne please
-- 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
imma unsub you just steal videos from idkman and kuro dev
😭
who’s idk man? And plus he gives credits
@@RealDashLite Yea idk man is in credits and he liteary copies his videos
how do i make neon blocks
Thats good
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!]
Skibidi skibidi Hawk Tuah ah Gyat 🤑
GYATTTT 🤑🤑🤕
…
❤
First🎉
Tysm for the tut
Nice
Thx
thanks
Bro pls ma ea tut how to make slide
Hey bro can you show how to make guns! Like in prison life! I support barzil❤
Oh can you atleast make a tutorial for how to put hd admin in studio lite
sure!!
@@StudioLiteTutorial and also can you show how to make one of those boards
@@AzozAlharbi-ye1fuwhat boards?
@@StudioLiteTutorial play free admin game serch it up go in the map and youd see
Bruh make a rng system not that
@@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!
Can we change the font
idk but i will try
how to make the floor is lava in studio lite
What's this outro then ppl keeps saying I steal your outro🤡 ua-cam.com/video/FSV49swJF7Q/v-deo.htmlsi=2a9OfGQ_w4p1zSHB
Okay it's good that all my outro are from panzoid and there's a free outro video which u used
Thank you
Can you send me a script that will make that smaller
It's good that you gave credits because jumbo is my friend I know him
I made the end outro in panzoid and u stole it...
More like "you stole it" becuase its a capcut template. You nor him has the copyright for that
@Notbloxxy69 He used template I used panzoid panzoid DOENST have copyrighted outros and intros
@@RealDonateKingP but, did you make it?
Yeah everyone can use it my brother made it years ago@@Notbloxxy69
End outro Stolen
sorry:(
Is there anyway I can copy and paste scripts
In the description
❤
Good tutorial
Thanks For Commenting!
Is there anyway to copy and paste scripts
I think it doesn’t work :(
wait min he did not make it tho im not hateing but he did not make it
He gave credits in the title
@@Traymunchernoooooooooooooooooooooooooooooooo ok i need to stop i mean sLN dont make it
How do you make a text above an npc
Vote For Next Tutorial!: Lighting Tutorial Gamepass Button Tutorial!
❤
How to make a lighting Btw good video 👍❤
Wow👍👍
Cool video
I liked ur video
Tysm
Another banger
31
Brk he did credits to the person who did it so he didnt steala d some people maybe cant see some vids????
So swoxnyy dint be mean he can also just be trying it??
@@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!
@@SwroxnyyYTcalm down pls
@@SwroxnyyYT also show proof he said bad things
Where’s the script bro why lying??
@@Rip_WajeehYT12 its in description bro
Lol Face Reveal At 1:28
@@RealDonateKingP XD
Where script??
@ in description