Advertisement
SirUsefull

Float Script

Aug 1st, 2021
4,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 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 Name = Instance.new("TextLabel")
  9. local Credits = Instance.new("TextLabel")
  10. local Note = Instance.new("TextLabel")
  11. local TextLabel = Instance.new("TextLabel")
  12. local ACTIVATE = Instance.new("TextButton")
  13. local arrow_forward = Instance.new("ImageButton")
  14. local arrow_back = Instance.new("ImageButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.BackgroundColor3 = Color3.fromRGB(55, 75, 255)
  23. Frame.Position = UDim2.new(0.333580971, 0, 0.183551848, 0)
  24. Frame.Size = UDim2.new(0, 448, 0, 531)
  25.  
  26. Name.Name = "Name"
  27. Name.Parent = Frame
  28. Name.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  29. Name.Size = UDim2.new(0, 448, 0, 74)
  30. Name.Font = Enum.Font.SourceSans
  31. Name.Text = "FE UTG"
  32. Name.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. Name.TextScaled = true
  34. Name.TextSize = 14.000
  35. Name.TextWrapped = true
  36.  
  37. Credits.Name = "Credits"
  38. Credits.Parent = Frame
  39. Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. Credits.Position = UDim2.new(0, 0, 0.138282403, 0)
  41. Credits.Size = UDim2.new(0, 448, 0, 57)
  42. Credits.Font = Enum.Font.SourceSans
  43. Credits.Text = "Made By KillerMaster"
  44. Credits.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. Credits.TextScaled = true
  46. Credits.TextSize = 14.000
  47. Credits.TextWrapped = true
  48.  
  49. Note.Name = "Note"
  50. Note.Parent = Frame
  51. Note.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  52. Note.Position = UDim2.new(0, 0, 0.905838013, 0)
  53. Note.Size = UDim2.new(0, 448, 0, 50)
  54. Note.Font = Enum.Font.SourceSans
  55. Note.Text = "Note: Please reset to close this ui once ur done reading"
  56. Note.TextColor3 = Color3.fromRGB(0, 0, 0)
  57. Note.TextScaled = true
  58. Note.TextSize = 14.000
  59. Note.TextWrapped = true
  60.  
  61. TextLabel.Parent = Frame
  62. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. TextLabel.Position = UDim2.new(0, 0, 0.244821087, 0)
  64. TextLabel.Size = UDim2.new(0, 448, 0, 285)
  65. TextLabel.Font = Enum.Font.SourceSans
  66. TextLabel.Text = "NOTE: GUI Not Draggable!"
  67. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. TextLabel.TextScaled = true
  69. TextLabel.TextSize = 14.000
  70. TextLabel.TextWrapped = true
  71.  
  72. ACTIVATE.Name = "ACTIVATE"
  73. ACTIVATE.Parent = Frame
  74. ACTIVATE.BackgroundColor3 = Color3.fromRGB(40, 255, 16)
  75. ACTIVATE.Position = UDim2.new(0.265625, 0, 0.781544268, 0)
  76. ACTIVATE.Size = UDim2.new(0, 205, 0, 66)
  77. ACTIVATE.Font = Enum.Font.SciFi
  78. ACTIVATE.Text = "ACITVATE UTG"
  79. ACTIVATE.TextColor3 = Color3.fromRGB(0, 0, 0)
  80. ACTIVATE.TextScaled = true
  81. ACTIVATE.TextSize = 14.000
  82. ACTIVATE.TextWrapped = true
  83. ACTIVATE.MouseButton1Down:connect(function()
  84. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  85. loadstring(game:HttpGet("https://pastebin.com/raw/r3Y3PCaz",true))()
  86. end)
  87.  
  88. arrow_forward.Name = "arrow_forward"
  89. arrow_forward.Parent = Frame
  90. arrow_forward.BackgroundTransparency = 1.000
  91. arrow_forward.Position = UDim2.new(-0.00124046206, 0, 0.781766474, 0)
  92. arrow_forward.Size = UDim2.new(0, 119, 0, 65)
  93. arrow_forward.ZIndex = 2
  94. arrow_forward.Image = "rbxassetid://3926307971"
  95. arrow_forward.ImageRectOffset = Vector2.new(564, 284)
  96. arrow_forward.ImageRectSize = Vector2.new(36, 36)
  97.  
  98. arrow_back.Name = "arrow_back"
  99. arrow_back.Parent = arrow_forward
  100. arrow_back.BackgroundTransparency = 1.000
  101. arrow_back.Position = UDim2.new(2.72268915, 0, 0, 0)
  102. arrow_back.Size = UDim2.new(0, 123, 0, 65)
  103. arrow_back.ZIndex = 2
  104. arrow_back.Image = "rbxassetid://3926307971"
  105. arrow_back.ImageRectOffset = Vector2.new(124, 324)
  106. arrow_back.ImageRectSize = Vector2.new(36, 36)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement