How to Make a Character Selection GUI | Roblox Studio | RobloxianLife #tutorial #robloxstudio #rblx

Аватар автора
Игры и Гравитация
In this video I will show you how to make a character selection GUI for your roblox game. Make a game to earn robux. How to make a custom starter character in Roblox Studio. ROBLOX. RobloxianLife THE SCRIPTS USED IN VIDEO: MAIN SCRIPT: local Player = script.Parent.Parent.Parent local Content = script.Parent.MainFrame.ScrollingFrame.Content local Characters = game.ReplicatedStorage.Characters local SetSubject = Characters.Parent.SetSubject for index,item in pairs(Characters:GetChildren()) do if item:FindFirstChild("Humanoid") then local ViewportFrame = Instance.new("ViewportFrame") ViewportFrame.Parent = Content ViewportFrame.BackgroundTransparency = 1 local Button = Instance.new("TextButton") Button.Parent = ViewportFrame Button.Position = UDim2.new(0,0,1,0) Button.Size = UDim2.new(1,0,0,15) Button.BorderSizePixel = 0 Button.BackgroundColor3 = Color3.fromRGB(255,255,255) Button.Text = "Spawn" Button.TextScaled = true local Preview = item:Clone() Preview.Parent = ViewportFrame local Camera = Instance.new("Camera") Camera.Parent = ViewportFrame Camera.CFrame = Preview.Head.CFrame + Preview.Head.CFrame.LookVector * 5 Camera.CFrame = CFrame.new(Camera.CFrame.Position,Preview.Head.Position) ViewportFrame.CurrentCamera = Camera Button.MouseButton1Down:Connect(function() script.Parent.Enabled = false local ChosenCharacter = item:Clone() local CurrentCharacter = Player.Character local LocalScripts = {} for index2,item2...

0/0


0/0

0/0

0/0