Advertisement
Guest User

SwordBurst2 F3

a guest
Nov 22nd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.26 KB | None | 0 0
  1. -- Objects
  2.  
  3. local FloorChoice = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Frame_2 = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local FloorOne = Instance.new("TextButton")
  8. local FloorTwo = Instance.new("TextButton")
  9. local FloorFour = Instance.new("TextButton")
  10. local FloorThree = Instance.new("TextButton")
  11.  
  12. -- Properties
  13.  
  14. FloorChoice.Name = "FloorChoice"
  15. FloorChoice.Parent = game.CoreGui
  16.  
  17. Frame.Parent = FloorChoice
  18. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  19. Frame.BackgroundTransparency = 0.60000002384186
  20. Frame.Position = UDim2.new(0.493927121, 0, 0.496723473, 0)
  21. Frame.Size = UDim2.new(0, 140, 0, 103)
  22. Frame.Active = true
  23. Frame.Draggable = true
  24.  
  25. Frame_2.Parent = Frame
  26. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Frame_2.BackgroundTransparency = 0.40000000596046
  28. Frame_2.Size = UDim2.new(0, 140, 0, 23)
  29.  
  30. TextLabel.Parent = Frame_2
  31. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextLabel.BackgroundTransparency = 1
  33. TextLabel.Size = UDim2.new(0, 140, 0, 23)
  34. TextLabel.Font = Enum.Font.ArialBold
  35. TextLabel.FontSize = Enum.FontSize.Size14
  36. TextLabel.Text = "Made by CharWar"
  37. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  38. TextLabel.TextScaled = true
  39. TextLabel.TextSize = 14
  40. TextLabel.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement