unknownexploits

uiwatermark

Aug 29th, 2020 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. local Frame = Instance.new("ImageLabel")
  2. local UIListLayout = Instance.new("UIListLayout")
  3. local Text = Instance.new("ImageButton")
  4. local Name = Instance.new("Frame")
  5. local Icon = Instance.new("ImageLabel")
  6.  
  7. Frame.Name = "watermark"
  8. Frame.Parent = game.CoreGui:WaitForChild("uwuware")
  9. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  10. Frame.BackgroundTransparency = 1.000
  11. Frame.ClipsDescendants = true
  12. Frame.Position = UDim2.new(-1, 0, 0.275999993, 0)
  13. Frame.Size = UDim2.new(0, 189, 0, 204)
  14. Frame.Image = "rbxassetid://3570695787"
  15. Frame.ImageColor3 = Color3.fromRGB(35, 35, 35)
  16. Frame.ScaleType = Enum.ScaleType.Slice
  17. Frame.SliceCenter = Rect.new(100, 100, 100, 100)
  18. Frame.SliceScale = 0.120
  19.  
  20. UIListLayout.Parent = Frame
  21. UIListLayout.FillDirection = Enum.FillDirection.Horizontal
  22.  
  23. Text.Name = "Text"
  24. Text.Parent = Frame
  25. Text.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. Text.BackgroundTransparency = 1.000
  27. Text.Position = UDim2.new(0.394422323, 0, 0, 0)
  28. Text.Size = UDim2.new(0, 304, 0, 204)
  29. Text.Image = "http://www.roblox.com/asset/?id=5545516032"
  30.  
  31. Name.Name = "Name"
  32. Name.Parent = Frame
  33. Name.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. Name.BackgroundTransparency = 1.000
  35. Name.Size = UDim2.new(0, 176, 0, 204)
  36.  
  37. Icon.Name = "Icon"
  38. Icon.Parent = Name
  39. Icon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. Icon.BackgroundTransparency = 1.000
  41. Icon.BorderSizePixel = 0
  42. Icon.Position = UDim2.new(-0.326780885, 0, -0.322929174, 0)
  43. Icon.Size = UDim2.new(0, 296, 0, 334)
  44. Icon.Image = "http://www.roblox.com/asset/?id=5448429554"
  45.  
  46. local TweenService = game:GetService("TweenService")
  47. local Object = game.CoreGui:WaitForChild("uwuware").watermark:WaitForChild("Name").Icon -- The object you want to tween.
  48.  
  49. local tweenInfo = TweenInfo.new(
  50. 1, -- The time the tween takes to complete
  51. Enum.EasingStyle.Linear, -- The tween style.
  52. Enum.EasingDirection.Out, -- EasingDirection
  53. 1, -- How many times you want the tween to repeat. If you make it less than 0 it will repeat forever.
  54. false, -- Reverse?
  55. 0 -- Delay
  56. )
  57.  
  58. local Tween = TweenService:Create(Object, tweenInfo, {Rotation = 360})
  59. Tween:Play() -- Plays the tween
  60. game.CoreGui:WaitForChild("uwuware").watermark:TweenPosition(UDim2.new(0.308, 0,0.276, 0), "Out", "Linear", 2, true)
  61. game.CoreGui:WaitForChild("uwuware").watermark:TweenSize(UDim2.new(0, 502,0, 204), "Out", "Linear", .5, true)
  62. Text.MouseButton1Down:Connect(function()
  63. Tween:Play() -- Plays the tween
  64. for i = 0, 1, .1 do
  65. wait(0.03)
  66. game.CoreGui:WaitForChild("uwuware").watermark.Text.ImageTransparency = i
  67. end
  68. for i = 0, .5, .1 do
  69. wait(0.03)
  70. game.CoreGui:WaitForChild("uwuware").watermark.ImageTransparency = i
  71. game.CoreGui:WaitForChild("uwuware").watermark:WaitForChild("Name").Icon.ImageTransparency = i
  72. end
  73. game.CoreGui:WaitForChild("uwuware").watermark:TweenPosition(UDim2.new(0.902, 0,0.684, 0), "Out", "Linear", 2, true)
  74. game.CoreGui:WaitForChild("uwuware").watermark:TweenSize(UDim2.new(0, 166,0, 192), "Out", "Linear", 2, true)
  75.  
  76. end)
  77.  
Add Comment
Please, Sign In to add comment