Advertisement
FLESHIE

cake recipe

Mar 30th, 2020
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local execute = Instance.new("TextButton")
  9. local clear = Instance.new("TextButton")
  10. local executor = Instance.new("TextBox")
  11. local blush = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. main.Name = "main"
  19. main.Parent = ScreenGui
  20. main.BackgroundColor3 = Color3.fromRGB(255, 155, 247)
  21. main.Position = UDim2.new(0.623175204, 0, 0.447817832, 0)
  22. main.Size = UDim2.new(0, 324, 0, 198)
  23.  
  24. execute.Name = "execute"
  25. execute.Parent = ScreenGui
  26. execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  27. execute.BackgroundTransparency = 1.000
  28. execute.BorderSizePixel = 0
  29. execute.Position = UDim2.new(0.623175204, 0, 0.768500924, 0)
  30. execute.Size = UDim2.new(0, 101, 0, 29)
  31. execute.Font = Enum.Font.SourceSans
  32. execute.Text = "Execute"
  33. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. execute.TextSize = 30.000
  35.  
  36. clear.Name = "clear"
  37. clear.Parent = ScreenGui
  38. clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  39. clear.BackgroundTransparency = 1.000
  40. clear.BorderSizePixel = 0
  41. clear.Position = UDim2.new(0.826642334, 0, 0.768500924, 0)
  42. clear.Size = UDim2.new(0, 101, 0, 29)
  43. clear.Font = Enum.Font.SourceSans
  44. clear.Text = "Clear"
  45. clear.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. clear.TextSize = 30.000
  47.  
  48. executor.Name = "executor"
  49. executor.Parent = ScreenGui
  50. executor.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  51. executor.BackgroundTransparency = 0.600
  52. executor.BorderSizePixel = 0
  53. executor.Position = UDim2.new(0.631386876, 0, 0.462998092, 0)
  54. executor.Size = UDim2.new(0, 303, 0, 153)
  55. executor.Font = Enum.Font.SourceSans
  56. executor.Text = ""
  57. executor.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. executor.TextSize = 14.000
  59. executor.TextXAlignment = Enum.TextXAlignment.Left
  60. executor.TextYAlignment = Enum.TextYAlignment.Top
  61.  
  62. blush.Name = "blush"
  63. blush.Parent = ScreenGui
  64. blush.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. blush.BackgroundTransparency = 1.000
  66. blush.BorderSizePixel = 0
  67. blush.Position = UDim2.new(0.715328455, 0, 0.753320694, 0)
  68. blush.Size = UDim2.new(0, 122, 0, 37)
  69. blush.Font = Enum.Font.SourceSans
  70. blush.Text = "BLUSH"
  71. blush.TextColor3 = Color3.fromRGB(0, 0, 0)
  72. blush.TextSize = 45.000
  73.  
  74. --Functions:
  75.  
  76. execute.MouseButton1Click:Connect(function()
  77. game.ReplicatedStorage.RemoteEvent:FireServer(executor.Text)
  78. end)
  79.  
  80. clear.MouseButton1Click:Connect(function()
  81. executor.Text = ""
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement