vaux19

The Floor Is Lava Gui

Mar 20th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. local Tp = Instance.new("TextButton")
  11. local ImageLabel = Instance.new("ImageLabel")
  12. local Frame_2 = Instance.new("Frame")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. Frame.Parent = ScreenGui
  20. Frame.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  21. Frame.BorderSizePixel = 0
  22. Frame.Position = UDim2.new(0.0753799379, 0, 0.302380949, 0)
  23. Frame.Size = UDim2.new(0, 298, 0, 107)
  24.  
  25. TextLabel.Parent = Frame
  26. TextLabel.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  27. TextLabel.BackgroundTransparency = 1.000
  28. TextLabel.BorderSizePixel = 0
  29. TextLabel.Position = UDim2.new(-0.0201342274, 0, 0, 0)
  30. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  31. TextLabel.Font = Enum.Font.Cartoon
  32. TextLabel.Text = "Floor is Lava Gui"
  33. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. TextLabel.TextSize = 19.000
  35.  
  36. TextLabel_2.Parent = Frame
  37. TextLabel_2.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  38. TextLabel_2.BackgroundTransparency = 1.000
  39. TextLabel_2.BorderSizePixel = 0
  40. TextLabel_2.Position = UDim2.new(0.328859061, 0, 0.532710254, 0)
  41. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  42. TextLabel_2.Font = Enum.Font.Cartoon
  43. TextLabel_2.Text = "Click on The button, and u get free Wins in any times."
  44. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  45. TextLabel_2.TextScaled = true
  46. TextLabel_2.TextSize = 12.000
  47. TextLabel_2.TextWrapped = true
  48.  
  49. Tp.Name = "Tp"
  50. Tp.Parent = Frame
  51. Tp.BackgroundColor3 = Color3.fromRGB(78, 236, 115)
  52. Tp.BorderSizePixel = 0
  53. Tp.Position = UDim2.new(0.0402684547, 0, 0.532710254, 0)
  54. Tp.Size = UDim2.new(0, 79, 0, 50)
  55. Tp.Font = Enum.Font.Cartoon
  56. Tp.Text = "Tp To Lobby"
  57. Tp.TextColor3 = Color3.fromRGB(255, 255, 255)
  58. Tp.TextScaled = true
  59. Tp.TextSize = 24.000
  60. Tp.TextWrapped = true
  61. Tp.MouseButton1Down:connect(function()
  62. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.66627, 46.4368, -222.897)
  63. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  64. wait(3)
  65. hint:Destroy()
  66. end)
  67.  
  68. ImageLabel.Parent = Frame
  69. ImageLabel.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  70. ImageLabel.BackgroundTransparency = 1.000
  71. ImageLabel.BorderColor3 = Color3.fromRGB(85, 255, 127)
  72. ImageLabel.BorderSizePixel = 0
  73. ImageLabel.Position = UDim2.new(0.862416089, 0, 0, 0)
  74. ImageLabel.Size = UDim2.new(0, 41, 0, 32)
  75. ImageLabel.ZIndex = 0
  76. ImageLabel.Image = "rbxassetid://138874334"
  77. ImageLabel.ImageColor3 = Color3.fromRGB(78, 236, 115)
  78. ImageLabel.ImageTransparency = 0.600
  79. ImageLabel.ScaleType = Enum.ScaleType.Fit
  80.  
  81. Frame_2.Parent = ScreenGui
  82. Frame_2.BackgroundColor3 = Color3.fromRGB(78, 236, 115)
  83. Frame_2.BorderSizePixel = 0
  84. Frame_2.Position = UDim2.new(0.0717325211, 0, 0.302380949, 0)
  85. Frame_2.Size = UDim2.new(0, 304, 0, 107)
  86. Frame_2.ZIndex = 0
Add Comment
Please, Sign In to add comment