Advertisement
zombieslayerwtf

Terror in Bikini Bottom gui

May 13th, 2018
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. -- [hi this is my gui i made with an fe god and my very first fe script
  2. -- [which is a cash script for this:
  3. -- TERROR IN BIKINI BOTTOM: https://web.roblox.com/games/31500456/Terror-in-Bikini-Bottom
  4.  
  5. -- i made this and shared it for you all have fun!
  6.  
  7. -- Objects
  8.  
  9. local Zeuo = Instance.new("ScreenGui")
  10. local ZLogoStrap = Instance.new("TextLabel")
  11. local nigerianframe = Instance.new("ScrollingFrame")
  12. local GiveCash = Instance.new("TextButton")
  13. local GiveGod = Instance.new("TextButton")
  14. local TextLabel = Instance.new("TextLabel")
  15. local TopBar = Instance.new("Frame")
  16.  
  17. -- Properties
  18.  
  19. Zeuo.Name = "Zeuo"
  20. Zeuo.Parent = game.CoreGui
  21.  
  22. ZLogoStrap.Name = "ZLogoStrap"
  23. ZLogoStrap.Parent = Zeuo
  24. ZLogoStrap.Active = true
  25. ZLogoStrap.BackgroundColor3 = Color3.new(0.666667, 0.333333, 1)
  26. ZLogoStrap.BorderSizePixel = 0
  27. ZLogoStrap.Draggable = true
  28. ZLogoStrap.Position = UDim2.new(0, 233, 0, 124)
  29. ZLogoStrap.Size = UDim2.new(0, 341, 0, 35)
  30. ZLogoStrap.Font = Enum.Font.Highway
  31. ZLogoStrap.FontSize = Enum.FontSize.Size28
  32. ZLogoStrap.Text = "Zeuo - TIBB"
  33. ZLogoStrap.TextColor3 = Color3.new(1, 1, 1)
  34. ZLogoStrap.TextSize = 27
  35. ZLogoStrap.TextWrapped = true
  36.  
  37. nigerianframe.Name = "nigerianframe"
  38. nigerianframe.Parent = ZLogoStrap
  39. nigerianframe.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  40. nigerianframe.BorderSizePixel = 0
  41. nigerianframe.Position = UDim2.new(0, 0, 0, 50)
  42. nigerianframe.Size = UDim2.new(0, 341, 0, 190)
  43.  
  44. GiveCash.Name = "GiveCash"
  45. GiveCash.Parent = nigerianframe
  46. GiveCash.BackgroundColor3 = Color3.new(0.666667, 0.333333, 1)
  47. GiveCash.BorderSizePixel = 0
  48. GiveCash.Position = UDim2.new(0, 70, 0, 24)
  49. GiveCash.Size = UDim2.new(0, 200, 0, 50)
  50. GiveCash.Font = Enum.Font.SourceSansItalic
  51. GiveCash.FontSize = Enum.FontSize.Size24
  52. GiveCash.Text = "10M Cash/Points"
  53. GiveCash.TextColor3 = Color3.new(1, 1, 1)
  54. GiveCash.TextSize = 20
  55.  
  56. GiveGod.Name = "GiveGod"
  57. GiveGod.Parent = nigerianframe
  58. GiveGod.BackgroundColor3 = Color3.new(0.666667, 0.333333, 1)
  59. GiveGod.BorderSizePixel = 0
  60. GiveGod.Position = UDim2.new(0, 70, 0, 95)
  61. GiveGod.Size = UDim2.new(0, 200, 0, 50)
  62. GiveGod.Font = Enum.Font.SourceSansItalic
  63. GiveGod.FontSize = Enum.FontSize.Size24
  64. GiveGod.Text = "10M Killz (WIP)"
  65. GiveGod.TextColor3 = Color3.new(1, 1, 1)
  66. GiveGod.TextSize = 20
  67.  
  68. TextLabel.Parent = nigerianframe
  69. TextLabel.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
  70. TextLabel.BorderSizePixel = 0
  71. TextLabel.Position = UDim2.new(0, 0, 0, 171)
  72. TextLabel.Size = UDim2.new(0, 341, 0, 19)
  73. TextLabel.Font = Enum.Font.Highway
  74. TextLabel.FontSize = Enum.FontSize.Size14
  75. TextLabel.Text = "CASH SCRIPT and GUI Made by Excil#6647"
  76. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  77. TextLabel.TextSize = 14
  78.  
  79. TopBar.Name = "TopBar"
  80. TopBar.Parent = ZLogoStrap
  81. TopBar.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
  82. TopBar.BorderSizePixel = 0
  83. TopBar.Position = UDim2.new(0, 0, 0, 35)
  84. TopBar.Size = UDim2.new(0, 341, 0, 16)
  85.  
  86. GiveGod.MouseButton1Down:connect(function()
  87. game.ReplicatedStorage.Remotes.HitClaim:InvokeServer("10000000")
  88. end)
  89.  
  90. GiveCash.MouseButton1Down:connect(function()
  91. game.ReplicatedStorage.Remotes.ChangeCash:InvokeServer("10000000")
  92. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement