- 212
- 145 222
ThatDevForum
เข้าร่วมเมื่อ 27 มี.ค. 2024
The offcial channel of EasyLite,ClassicHangout,Driving legends and Speed simulator. i make tutorials aboutStudio lite and showcase about EasyLite. Projecter/Scripter+ Modeler and Owner of these games!
Beating a sus furry girl in Roblox Rivals
I beated a sus gril in this game Rivals.Be sure to watch the whole video
มุมมอง: 77
วีดีโอ
How to add a death gui/screen in studio lite and Roblox studio. [LOCALSCRIPTS IN DESCRIPTION]
มุมมอง 528หลายเดือนก่อน
in this video you will learn how to add a death screen in studio lite.Works in roblox studio too. make sure to watch the full video so you dont miss any steps. [LOCALSCRIPT IN SCREENGUI] game.Players.LocalPlayer.Character:WaitForChild('Humanoid').Died:connect(function() script.Parent.Frame2.Visible = true wait(0.1) script.Parent.Frame2.Visible = false script.Parent.Frame.Visible = true end) [LO...
EASYLITE REWORK SHOWCASE [87/100%] PUBLIC NOW!
มุมมอง 114หลายเดือนก่อน
Game has been officially published and everything process before a player joins.Reworked,Reprogrammed,Publissh button is out for 2 to 3 days.Watch this showcase for information about the rework.peace!
The update Showcase (60/100%)
มุมมอง 221หลายเดือนก่อน
the showcase of easylite Update has been done. Find this in RtsinceHD profile the owner of this game and youtube channel.
How to make a Ragdoll system just like Ragdoll Engine in studio lite/Roblox studio (WORKS IN R6 R15)
มุมมอง 5522 หลายเดือนก่อน
in this video i am teaching you how to make a ragdoll system just like ragdoll engine but the fun fact is that this ragdoll works in R6 and R15 so lets get started straight to the Video if you haven't see the video yet. Script: Made by DevForum Make sure to add a credts of me when needed Put this Script in ServerScriptService 👌🙃🙃 game:GetService("Players").PlayerAdded:Connect(function(player) p...
How to add Chat message when someone joins and how to make a mesh talk with dialog system!
มุมมอง 1442 หลายเดือนก่อน
No scripts for Dialog system script[SERVERSCRIPTSERVICE]: local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") Players.PlayerAdded:Connect(function(Player) task.wait(0.3) ReplicatedStorage.PlayerJoinedEvent:FireAllClients(Player.DisplayName) end) LocalScript 📑 [STARTERPLAYERSCRIPT] in comments
How to make a Update/Credits Gui in studio lite/Roblox studio. (Scripts in description
มุมมอง 2772 หลายเดือนก่อน
also you can customize by your own! dont change the scripts if you cant! Name the frame as MainFrame or else it wont work! LocalScript 1 (for opening 📑) local Button = script.Parent local Frame = Button.Parent.MainFrame Button.MouseButton1Click:Connect(function() Frame.Visible = not Frame.Visible end) if u want to add a animation when closing then copy this localscript📑 LocalScript 📑 (if u want...
trying to beat yellow dummy with energy pistol (with a team) pt.2
มุมมอง 212 หลายเดือนก่อน
FAILED #robloxrivals #roblox
Pt.3 of Trying to beat the strongtest dummy (with Subtestripem)
มุมมอง 222 หลายเดือนก่อน
Pt.3 of Trying to beat the strongtest dummy (with Subtestripem)
Can the energy pistols beat the ye;llow dummy? failed
มุมมอง 122 หลายเดือนก่อน
it cant beat the yellow dummy yet. maybe we will both find some combos to beat it. tell me ideas!! in comments
BIG NEWSS (Publishing new rng game in royality group)
มุมมอง 1082 หลายเดือนก่อน
BIG NEWSS (Publishing new rng game in royality group)
trailer. (NATURAL DISASTER SURVIVAL 2)
มุมมอง 692 หลายเดือนก่อน
trailer. (NATURAL DISASTER SURVIVAL 2)
playing mm2 (should i quit making tutorials?)
มุมมอง 652 หลายเดือนก่อน
playing mm2 (should i quit making tutorials?)
how to add cartoony version but V2 in studio lite/Roblox studio.
มุมมอง 6962 หลายเดือนก่อน
how to add cartoony version but V2 in studio lite/Roblox studio.
How to make a Disappearing stairs in Studio lite/Roblox Studio
มุมมอง 7242 หลายเดือนก่อน
How to make a Disappearing stairs in Studio lite/Roblox Studio
how to have custom Decals in Studio Lite/Roblox Studio Tutorial
มุมมอง 7002 หลายเดือนก่อน
how to have custom Decals in Studio Lite/Roblox Studio Tutorial
How to make a Working Door in Studio Lite/Roblox Studio
มุมมอง 7712 หลายเดือนก่อน
How to make a Working Door in Studio Lite/Roblox Studio
how to have a Invisible Car Tutorial in Studio Lite/Roblox Studio
มุมมอง 2142 หลายเดือนก่อน
how to have a Invisible Car Tutorial in Studio Lite/Roblox Studio
how to add a player's Model or dummy (Tutorial) in Studio Lite/Roblox studio
มุมมอง 4K3 หลายเดือนก่อน
how to add a player's Model or dummy (Tutorial) in Studio Lite/Roblox studio
Smooth Evade Camera Type Tutorial in Studio Lite/Roblix Studio. (Easy way)
มุมมอง 3393 หลายเดือนก่อน
Smooth Evade Camera Type Tutorial in Studio Lite/Roblix Studio. (Easy way)
Speed pad tutorial on Studio Lite/Roblox Studio. (Easy way)
มุมมอง 4493 หลายเดือนก่อน
Speed pad tutorial on Studio Lite/Roblox Studio. (Easy way)
How to make a Shiftlock option for your obby or game (Works on studio lite and Roblox Studio)
มุมมอง 2.8K3 หลายเดือนก่อน
How to make a Shiftlock option for your obby or game (Works on studio lite and Roblox Studio)
local ProximityPrompt = script.Parent.ProximityPrompt local Part = game.Workspace.Door -- Change "Door" to whatever part you want to open when a player clicks E ProximityPrompt.Triggered:Connect(function(Player) wait(0.1) -- Here you can change the amount of time the script waits until the part changes after clicking E. Part.CanCollide = false Part.Transparency = 1 -- You are able to adjust how transparent the part is when it is clicked here ProximityPrompt.Enabled = false -- This disables the E button so that players cant click E when the part is open wait(2) -- Here you can change the amount of time the part will be open for before it closes again Part.CanCollide = true Part.Transparency )
Why did u stop posting shorts?
qhat should i make about?
@Devforum-h6x uhm trends?
It worked, thank you!!
I did exactly what you did but it's not working, I'm already losing my patience
bro it keeps saying mouse click 1 is not a member of it
DevForum can you give toturial on how to make checkpoint😭
Hey bro if you add R6 script then you will be able to see KJ's animations
You are one. liar
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)
Lets try all is say tysm so me too 😅
BRO Can you sell your channel for how much robux you want anr else
how much?
@@QuensoRobloxStudio 💀💀💀
Hi
Hi
ocal ProximityPrompt = script.Parent.ProximityPrompt local Part = game.Workspace.YourPartName -- Change "YourPartName" to whatever part you want to open when a player clicks E ProximityPrompt.Triggered:Connect(function(Player) wait(0.1) -- Here you can change the amount of time the script waits until the part changes after clicking E. Part.CanCollide = false Part.Transparency = 1 -- You are able to adjust how transparent the part is when it is clicked here ProximityPrompt.Enabled = false -- This disables the E button so that players cant click E when the part is open wait(2) -- Here you can change the amount of time the part will be open for before it closes again Part.CanCollide = true Part.Transparency = 0 -- You are able to adjust how transparent the part is when it is changed back here ProximityPrompt.Enabled = true -- This reenables the E button so players can click it again end)
How to make it respawn?
to lie
Ohhh niceeee i wish i have that too 😢🎉
How to publish?
Dang ur verified dangggg
Cool! I also make tutorials lol
Nice
Looking good but ui design is Mixed. good job
welcome to the comments. You must came here to talk or rate the game!
How
It is fame
I can't join because it is unrated
yoo i will make a video
Link to the game as always www.roblox.com/games/88279887350827/EasyLite-PUBLISH
@Devforum-h6x please scale the Gui To fit on all devices, I've tried the game in my phone but the Gui is too messy 😅 🙏
@@athallagaming1712 ill try
Can we publish?
publish button has came
BRO THANK YOU SO MUCH YOU DESERVE A LIKE AND A SUB!!! :D
-- Script para habilitar Shift Lock local UIS = game:GetService("UserInputService") local player = game.Players.LocalPlayer local camera = workspace.CurrentCamera -- Configurações iniciais local shiftLockEnabled = false local shiftKey = Enum.KeyCode.LeftShift -- Pode ser alterado para outra tecla, se preferir -- Função para alternar Shift Lock local function toggleShiftLock() shiftLockEnabled = not shiftLockEnabled if shiftLockEnabled then camera.CameraType = Enum.CameraType.Scriptable camera.CameraSubject = player.Character else camera.CameraType = Enum.CameraType.Custom end end -- Detecta entrada do jogador UIS.InputBegan:Connect(function(input, processed) if processed then return end if input.KeyCode == shiftKey then toggleShiftLock() end end) -- Atualiza a câmera enquanto o Shift Lock está ativado game:GetService("RunService").RenderStepped:Connect(function() if shiftLockEnabled and player.Character and player.Character:Find
A
3:52 3:54 3:54 3:54 3:55 @A♥︎:Can you make a house ╱◥██████◣ │∩│🪟▤│🪟│ ▓▆▇█▓🚪▓█▇
Why u always say ur on pc🤣🙏
watch my other videos /bud
How to create pls donate game in studio lite
Brother just go learn scripting
Nice collab
Timing
Check my coding
local ProximityPrompt = script.Parent.ProximityPrompt local Part = game.Workspace.YourPartName -- Change "YourPartName" to whatever part you want to open when a player clicks E ProximityPrompt.Triggered:Connect(function(Player) wait(0.1) -- Here you can change the amount of time the script waits until the part changes after clicking E. Part.CanCollide = false Part.Transparency = 1 -- You are able to adjust how transparent the part is when it is clicked here ProximityPrompt.Enabled = false -- This disables the E button so that players cant click E when the part is open wait(2) -- Here you can change the amount of time the part will be open for before it closes again Part.CanCollide = true Part.Transparency = 0 -- You are able to adjust how transparent the part is when it is changed back here ProximityPrompt.Enabled = true -- This reenables the E button so players can click it again end)
This edit is so cool
What r the benefits of being verified ?? Do u get robux from roblox???
kinda when u promote ur game
He not verified he just inspected
@@Spooy691 dude Roblox gets updated too many times and we don't even know if Roblox changed the settings like you can't see people verified logo
oh
@@Devforum-h6xBRO WDYM THATS FAKE