Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- R6/R15 Dönüşüm GUI Script
- -- GUI ayarları
- local ScreenGui = Instance.new("ScreenGui")
- local MainFrame = Instance.new("Frame")
- local TitleLabel = Instance.new("TextLabel")
- local R6Button = Instance.new("TextButton")
- local R15Button = Instance.new("TextButton")
- local CloseButton = Instance.new("TextButton")
- -- GUI bileşenlerini ayarla
- ScreenGui.Parent = game.CoreGui
- MainFrame.Parent = ScreenGui
- MainFrame.Size = UDim2.new(0, 300, 0, 200)
- MainFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
- MainFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
- TitleLabel.Parent = MainFrame
- TitleLabel.Size = UDim2.new(1, 0, 0, 50)
- TitleLabel.Text = "R6/R15 Dönüşüm"
- TitleLabel.TextColor3 = Color3.new(1, 1, 1)
- TitleLabel.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- R6Button.Parent = MainFrame
- R6Button.Size = UDim2.new(0, 250, 0, 50)
- R6Button.Position = UDim2.new(0.5, -125, 0.3, 0)
- R6Button.Text = "R6'ya Dön"
- R6Button.BackgroundColor3 = Color3.new(0.3, 0.3, 0.3)
- R15Button.Parent = MainFrame
- R15Button.Size = UDim2.new(0, 250, 0, 50)
- R15Button.Position = UDim2.new(0.5, -125, 0.5, 0)
- R15Button.Text = "R15'e Dön"
- R15Button.BackgroundColor3 = Color3.new(0.3, 0.3, 0.3)
- CloseButton.Parent = MainFrame
- CloseButton.Size = UDim2.new(0, 100, 0, 50)
- CloseButton.Position = UDim2.new(0.5, -50, 0.8, 0)
- CloseButton.Text = "Kapat"
- CloseButton.BackgroundColor3 = Color3.new(1, 0.2, 0.2)
- -- R6/R15 dönüşüm fonksiyonları
- R6Button.MouseButton1Click:Connect(function()
- local player = game.Players.LocalPlayer
- player.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Freefall) -- Düşme durumu
- player.Character.Humanoid.RigType = Enum.HumanoidRigType.R6
- end)
- R15Button.MouseButton1Click:Connect(function()
- local player = game.Players.LocalPlayer
- player.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Freefall) -- Düşme durumu
- player.Character.Humanoid.RigType = Enum.HumanoidRigType.R15
- end)
- -- Kapatma fonksiyonu
- CloseButton.MouseButton1Click:Connect(function()
- ScreenGui:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment