Advertisement
PixelTactics101

Another GUI for my other GUI 1

Mar 31st, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local VoidScriptGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local VoidScriptGUI = Instance.new("TextLabel")
  9. local GrabKnife = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. VoidScriptGui.Name = "Void Script Gui"
  14. VoidScriptGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. VoidScriptGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Frame.Parent = VoidScriptGui
  18. Frame.BackgroundColor3 = Color3.fromRGB(186, 31, 0)
  19. Frame.BorderColor3 = Color3.fromRGB(64, 100, 126)
  20. Frame.Position = UDim2.new(0.679999948, 0, 0.51983583, 0)
  21. Frame.Size = UDim2.new(0, 457, 0, 308)
  22. Frame.Visible = false
  23. Frame.Active = true
  24. Frame.Draggable = true
  25.  
  26. VoidScriptGUI.Name = "Void Script GUI"
  27. VoidScriptGUI.Parent = Frame
  28. VoidScriptGUI.BackgroundColor3 = Color3.fromRGB(207, 91, 52)
  29. VoidScriptGUI.Size = UDim2.new(0, 457, 0, 35)
  30. VoidScriptGUI.Font = Enum.Font.SciFi
  31. VoidScriptGUI.Text = "Void Script GUI"
  32. VoidScriptGUI.TextColor3 = Color3.fromRGB(148, 0, 2)
  33. VoidScriptGUI.TextScaled = true
  34. VoidScriptGUI.TextSize = 14.000
  35. VoidScriptGUI.TextWrapped = true
  36.  
  37.  
  38. GrabKnife.Name = "Grab Knife"
  39. GrabKnife.Parent = Frame
  40. GrabKnife.BackgroundColor3 = Color3.fromRGB(218, 51, 54)
  41. GrabKnife.Position = UDim2.new(0.371991247, 0, 0.435064942, 0)
  42. GrabKnife.Size = UDim2.new(0, 116, 0, 40)
  43. GrabKnife.Font = Enum.Font.SciFi
  44. GrabKnife.Text = "Grab Knife"
  45. GrabKnife.TextColor3 = Color3.fromRGB(255, 226, 0)
  46. GrabKnife.TextScaled = true
  47. GrabKnife.TextSize = 14.000
  48. GrabKnife.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement