Hydasi

Vibe NYC - "Fucker"

Mar 18th, 2023
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.09 KB | None | 0 0
  1. --Sub to pizza prime :)
  2. -- Took me 1 hour to make this (In class)
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local TextBox = Instance.new("TextBox")
  9. local ScrollingFrame = Instance.new("ScrollingFrame")
  10. local Shotgun = Instance.new("TextButton")
  11. local RGBPan = Instance.new("TextButton")
  12. local Pistol = Instance.new("TextButton")
  13. local Phone = Instance.new("TextButton")
  14. local GravityGun = Instance.new("TextButton")
  15. local Flame = Instance.new("TextButton")
  16. local Tommy = Instance.new("TextButton")
  17. local Camera = Instance.new("TextButton")
  18. local VibeRifle = Instance.new("TextButton")
  19. local ReaperScythe = Instance.new("TextButton")
  20. local VibeGuitar = Instance.new("TextButton")
  21. local RGBkatana = Instance.new("TextButton")
  22. local All = Instance.new("TextButton")
  23. local Label = Instance.new("TextLabel")
  24. local Label_2 = Instance.new("TextLabel")
  25. local TextLabel = Instance.new("TextLabel")
  26. local TextLabel_2 = Instance.new("TextLabel")
  27. local Frame = Instance.new("Frame")
  28.  
  29. --Properties:
  30.  
  31. ScreenGui.Parent = game.CoreGui
  32.  
  33. Main.Name = "Main"
  34. Main.Parent = ScreenGui
  35. Main.BackgroundColor3 = Color3.fromRGB(62, 62, 62)
  36. Main.BorderColor3 = Color3.fromRGB(44, 44, 44)
  37. Main.Position = UDim2.new(0.541619778, 0, 0.598014891, 0)
  38. Main.Size = UDim2.new(0, 529, 0, 197)
  39.  
  40. TextBox.Parent = Main
  41. TextBox.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  42. TextBox.Position = UDim2.new(0.0189035926, 0, 0.312991679, 0)
  43. TextBox.Size = UDim2.new(0, 200, 0, 29)
  44. TextBox.Font = Enum.Font.Roboto
  45. TextBox.PlaceholderColor3 = Color3.fromRGB(170, 255, 0)
  46. TextBox.PlaceholderText = "Search"
  47. TextBox.Text = ""
  48. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. TextBox.TextSize = 20.000
  50.  
  51. ScrollingFrame.Parent = Main
  52. ScrollingFrame.Active = true
  53. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  54. ScrollingFrame.BorderColor3 = Color3.fromRGB(40, 40, 40)
  55. ScrollingFrame.Position = UDim2.new(0.438667625, 0, 0.0143161491, 0)
  56. ScrollingFrame.Size = UDim2.new(0, 296, 0, 190)
  57.  
  58. Shotgun.Name = "Shotgun"
  59. Shotgun.Parent = ScrollingFrame
  60. Shotgun.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  61. Shotgun.Position = UDim2.new(0.0304054096, 0, 0.0260416679, 0)
  62. Shotgun.Size = UDim2.new(0, 117, 0, 21)
  63. Shotgun.Font = Enum.Font.SourceSans
  64. Shotgun.Text = "Shotgun"
  65. Shotgun.TextColor3 = Color3.fromRGB(170, 0, 0)
  66. Shotgun.TextSize = 14.000
  67. Shotgun.MouseButton1Down:connect(function()
  68. game.ReplicatedStorage.Tools.Shotgun.Parent = game.Players.LocalPlayer.Backpack
  69. end)
  70.  
  71. RGBPan.Name = "RGB Pan"
  72. RGBPan.Parent = ScrollingFrame
  73. RGBPan.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  74. RGBPan.Position = UDim2.new(0.496621639, 0, 0.0260416679, 0)
  75. RGBPan.Size = UDim2.new(0, 117, 0, 21)
  76. RGBPan.Font = Enum.Font.SourceSans
  77. RGBPan.Text = "RGB Panda"
  78. RGBPan.TextColor3 = Color3.fromRGB(170, 0, 0)
  79. RGBPan.TextSize = 14.000
  80. RGBPan.MouseButton1Down:connect(function()
  81. game.ReplicatedStorage.Tools.RainbowPanda.Parent = game.Players.LocalPlayer.Backpack
  82. end)
  83.  
  84. Pistol.Name = "Pistol"
  85. Pistol.Parent = ScrollingFrame
  86. Pistol.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  87. Pistol.Position = UDim2.new(0.030405432, 0, 0.214930564, 0)
  88. Pistol.Size = UDim2.new(0, 117, 0, 21)
  89. Pistol.Font = Enum.Font.SourceSans
  90. Pistol.Text = "Pistol"
  91. Pistol.TextColor3 = Color3.fromRGB(170, 0, 0)
  92. Pistol.TextSize = 14.000
  93. Pistol.MouseButton1Down:connect(function()
  94. game.ReplicatedStorage.Tools.Pistol.Parent = game.Players.LocalPlayer.Backpack
  95. end)
  96.  
  97. Phone.Name = "Phone"
  98. Phone.Parent = ScrollingFrame
  99. Phone.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  100. Phone.Position = UDim2.new(0.496621639, 0, 0.214930564, 0)
  101. Phone.Size = UDim2.new(0, 117, 0, 21)
  102. Phone.Font = Enum.Font.SourceSans
  103. Phone.Text = "Phone"
  104. Phone.TextColor3 = Color3.fromRGB(170, 0, 0)
  105. Phone.TextSize = 14.000
  106. Phone.MouseButton1Down:connect(function()
  107. game.ReplicatedStorage.Tools.Phone.Parent = game.Players.LocalPlayer.Backpack
  108. end)
  109.  
  110. GravityGun.Name = "GravityGun"
  111. GravityGun.Parent = ScrollingFrame
  112. GravityGun.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  113. GravityGun.Position = UDim2.new(0.030405432, 0, 0.414930582, 0)
  114. GravityGun.Size = UDim2.new(0, 117, 0, 21)
  115. GravityGun.Font = Enum.Font.SourceSans
  116. GravityGun.Text = "GravityGun"
  117. GravityGun.TextColor3 = Color3.fromRGB(170, 0, 0)
  118. GravityGun.TextSize = 14.000
  119. GravityGun.MouseButton1Down:connect(function()
  120. game.ReplicatedStorage.Tools.GravityGun.Parent = game.Players.LocalPlayer.Backpack
  121. end)
  122.  
  123.  
  124. Flame.Name = "Flame"
  125. Flame.Parent = ScrollingFrame
  126. Flame.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  127. Flame.Position = UDim2.new(0.496621639, 0, 0.414930582, 0)
  128. Flame.Size = UDim2.new(0, 117, 0, 21)
  129. Flame.Font = Enum.Font.SourceSans
  130. Flame.Text = "Flamethrower"
  131. Flame.TextColor3 = Color3.fromRGB(170, 0, 0)
  132. Flame.TextSize = 14.000
  133. Flame.MouseButton1Down:connect(function()
  134. game.ReplicatedStorage.Tools.Flamethrower.Parent = game.Players.LocalPlayer.Backpack
  135. end)
  136.  
  137. Tommy.Name = "Tommy"
  138. Tommy.Parent = ScrollingFrame
  139. Tommy.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  140. Tommy.Position = UDim2.new(0.030405432, 0, 0.61493057, 0)
  141. Tommy.Size = UDim2.new(0, 117, 0, 21)
  142. Tommy.Font = Enum.Font.SourceSans
  143. Tommy.Text = "TommyGun"
  144. Tommy.TextColor3 = Color3.fromRGB(170, 0, 0)
  145. Tommy.TextSize = 14.000
  146. Tommy.MouseButton1Down:connect(function()
  147. game.ReplicatedStorage.Tools.TommyGun.Parent = game.Players.LocalPlayer.Backpack
  148. end)
  149.  
  150. Camera.Name = "Camera"
  151. Camera.Parent = ScrollingFrame
  152. Camera.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  153. Camera.Position = UDim2.new(0.496621639, 0, 0.61493057, 0)
  154. Camera.Size = UDim2.new(0, 117, 0, 21)
  155. Camera.Font = Enum.Font.SourceSans
  156. Camera.Text = "Camera"
  157. Camera.TextColor3 = Color3.fromRGB(170, 0, 0)
  158. Camera.TextSize = 14.000
  159. Camera.MouseButton1Down:connect(function()
  160. game.ReplicatedStorage.Tools.Camera.Parent = game.Players.LocalPlayer.Backpack
  161. end)
  162.  
  163. VibeRifle.Name = "VibeRifle"
  164. VibeRifle.Parent = ScrollingFrame
  165. VibeRifle.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  166. VibeRifle.Position = UDim2.new(0.030405432, 0, 0.780976832, 0)
  167. VibeRifle.Size = UDim2.new(0, 117, 0, 21)
  168. VibeRifle.Font = Enum.Font.SourceSans
  169. VibeRifle.Text = "VibeRifle"
  170. VibeRifle.TextColor3 = Color3.fromRGB(170, 0, 0)
  171. VibeRifle.TextSize = 14.000
  172. VibeRifle.MouseButton1Down:connect(function()
  173. game.ReplicatedStorage.Tools.VibeRifle.Parent = game.Players.LocalPlayer.Backpack
  174. end)
  175.  
  176. ReaperScythe.Name = "ReaperScythe"
  177. ReaperScythe.Parent = ScrollingFrame
  178. ReaperScythe.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  179. ReaperScythe.Position = UDim2.new(0.496621639, 0, 0.780976832, 0)
  180. ReaperScythe.Size = UDim2.new(0, 117, 0, 21)
  181. ReaperScythe.Font = Enum.Font.SourceSans
  182. ReaperScythe.Text = "ReaperScythe"
  183. ReaperScythe.TextColor3 = Color3.fromRGB(170, 0, 0)
  184. ReaperScythe.TextSize = 14.000
  185. ReaperScythe.MouseButton1Down:connect(function()
  186. game.ReplicatedStorage.Tools.ReaperScythe.Parent = game.Players.LocalPlayer.Backpack
  187. end)
  188.  
  189. VibeGuitar.Name = "VibeGuitar"
  190. VibeGuitar.Parent = ScrollingFrame
  191. VibeGuitar.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  192. VibeGuitar.Position = UDim2.new(0.030405432, 0, 0.930723011, 0)
  193. VibeGuitar.Size = UDim2.new(0, 117, 0, 21)
  194. VibeGuitar.Font = Enum.Font.SourceSans
  195. VibeGuitar.Text = "VibeGuitar"
  196. VibeGuitar.TextColor3 = Color3.fromRGB(170, 0, 0)
  197. VibeGuitar.TextSize = 14.000
  198. VibeGuitar.MouseButton1Down:connect(function()
  199. game.ReplicatedStorage.Tools.VibeGuitar.Parent = game.Players.LocalPlayer.Backpack
  200. end)
  201.  
  202. RGBkatana.Name = "RGB katana"
  203. RGBkatana.Parent = ScrollingFrame
  204. RGBkatana.BackgroundColor3 = Color3.fromRGB(197, 197, 197)
  205. RGBkatana.Position = UDim2.new(0.496621639, 0, 0.930723011, 0)
  206. RGBkatana.Size = UDim2.new(0, 117, 0, 21)
  207. RGBkatana.Font = Enum.Font.SourceSans
  208. RGBkatana.Text = "RGB katana"
  209. RGBkatana.TextColor3 = Color3.fromRGB(170, 0, 0)
  210. RGBkatana.TextSize = 14.000
  211. RGBkatana.MouseButton1Down:connect(function()
  212. game.ReplicatedStorage.Tools.RainbowKatana.Parent = game.Players.LocalPlayer.Backpack
  213. end)
  214.  
  215. All.Name = "All"
  216. All.Parent = Main
  217. All.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  218. All.BorderColor3 = Color3.fromRGB(0, 0, 0)
  219. All.Position = UDim2.new(0.0189035926, 0, 0.503455162, 0)
  220. All.Size = UDim2.new(0, 200, 0, 44)
  221. All.Font = Enum.Font.Roboto
  222. All.Text = "Give all Items"
  223. All.TextColor3 = Color3.fromRGB(170, 255, 0)
  224. All.TextSize = 20.000
  225. All.MouseButton1Down:connect(function()
  226. game.ReplicatedStorage.Tools.Shotgun.Parent = game.Players.LocalPlayer.Backpack
  227. wait(0.3)
  228. game.ReplicatedStorage.Tools.RainbowPanda.Parent = game.Players.LocalPlayer.Backpack
  229. wait(0.3)
  230. game.ReplicatedStorage.Tools.RainbowKatana.Parent = game.Players.LocalPlayer.Backpack
  231. wait(0.3)
  232. game.ReplicatedStorage.Tools.Popcorn.Parent = game.Players.LocalPlayer.Backpack
  233. wait(0.3)
  234. game.ReplicatedStorage.Tools.Pistol.Parent = game.Players.LocalPlayer.Backpack
  235. wait(0.3)
  236. game.ReplicatedStorage.Tools.Phone.Parent = game.Players.LocalPlayer.Backpack
  237. wait(0.3)
  238. game.ReplicatedStorage.Tools.VibeGuitar.Parent = game.Players.LocalPlayer.Backpack
  239. wait(0.3)
  240. game.ReplicatedStorage.Tools.ReaperScythe.Parent = game.Players.LocalPlayer.Backpack
  241. wait(0.3)
  242. game.ReplicatedStorage.Tools.VibeRifle.Parent = game.Players.LocalPlayer.Backpack
  243. wait(0.3)
  244. game.ReplicatedStorage.Tools.Camera.Parent = game.Players.LocalPlayer.Backpack
  245. wait(0.3)
  246. game.ReplicatedStorage.Tools.TommyGun.Parent = game.Players.LocalPlayer.Backpack
  247. wait(0.3)
  248. game.ReplicatedStorage.Tools.Flamethrower.Parent = game.Players.LocalPlayer.Backpack
  249. wait(0.3)
  250. game.ReplicatedStorage.Tools.GravityGun.Parent = game.Players.LocalPlayer.Backpack
  251. end)
  252.  
  253. Label.Name = "Label"
  254. Label.Parent = Main
  255. Label.BackgroundColor3 = Color3.fromRGB(170, 255, 0)
  256. Label.Position = UDim2.new(0.0189035926, 0, 0.808644235, 0)
  257. Label.Size = UDim2.new(0, 200, 0, 11)
  258. Label.Font = Enum.Font.SourceSans
  259. Label.Text = "Made By Pizza Prime on yt"
  260. Label.TextColor3 = Color3.fromRGB(0, 0, 0)
  261. Label.TextSize = 14.000
  262.  
  263. Label_2.Name = "Label"
  264. Label_2.Parent = Main
  265. Label_2.BackgroundColor3 = Color3.fromRGB(170, 255, 0)
  266. Label_2.Position = UDim2.new(0.0189035926, 0, 0.894938648, 0)
  267. Label_2.Size = UDim2.new(0, 200, 0, 11)
  268. Label_2.Font = Enum.Font.SourceSans
  269. Label_2.Text = "More items coming soon"
  270. Label_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  271. Label_2.TextSize = 14.000
  272.  
  273. TextLabel.Parent = Main
  274. TextLabel.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  275. TextLabel.BackgroundTransparency = 3.000
  276. TextLabel.Position = UDim2.new(0.12098299, 0, 0.0304568522, 0)
  277. TextLabel.Size = UDim2.new(0, 76, 0, 24)
  278. TextLabel.Font = Enum.Font.SourceSans
  279. TextLabel.Text = "Vibe NYC"
  280. TextLabel.TextColor3 = Color3.fromRGB(170, 0, 255)
  281. TextLabel.TextSize = 28.000
  282.  
  283. TextLabel_2.Parent = TextLabel
  284. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  285. TextLabel_2.BackgroundTransparency = 1.000
  286. TextLabel_2.Position = UDim2.new(0, 0, 1, 0)
  287. TextLabel_2.Size = UDim2.new(0, 113, 0, 20)
  288. TextLabel_2.Font = Enum.Font.SciFi
  289. TextLabel_2.Text = "Fucker"
  290. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  291. TextLabel_2.TextSize = 21.000
  292.  
  293. Frame.Parent = Main
  294. Frame.BackgroundColor3 = Color3.fromRGB(255, 170, 0)
  295. Frame.BackgroundTransparency = 0.950
  296. Frame.BorderColor3 = Color3.fromRGB(170, 85, 255)
  297. Frame.Position = UDim2.new(0.0926276147, 0, 0.0203045681, 0)
  298. Frame.Size = UDim2.new(0, 121, 0, 47)
  299.  
  300. -- Scripts:
  301.  
  302. local function CSGLHP_fake_script() -- Main.Search
  303. local script = Instance.new('LocalScript', Main)
  304.  
  305. local scroll = script.Parent.ScrollingFrame -- CHANGE THIS TO YOUR SCROLLING FRAME
  306. local textBox = script.Parent.TextBox -- CHANGE THIS TO YOUR TEXT BOX
  307.  
  308. textBox.Changed:Connect(function() -- when the text is changed
  309. local text = textBox.Text:lower() -- lowercase search bar text
  310. if text ~= "" then -- if it has text
  311. local buttons = scroll:GetDescendants() -- all of the buttons
  312. for _, button in pairs(buttons) do -- loops through the buttons
  313. if button:IsA("TextButton") then -- if it's a button
  314. local buttonText = button.Text:lower() -- lowercase button text
  315. if string.find(buttonText, text) then -- if search bar text is found in the button's text
  316. button.Visible = true -- shows button
  317. else -- otherwise
  318. button.Visible = false -- hides button
  319. end
  320. end
  321. end
  322. else -- if it's empty
  323. local buttons = scroll:GetDescendants() -- all buttons
  324. for _, button in pairs(buttons) do -- loops through buttons
  325. if button:IsA("TextButton") then -- if it's a button
  326. button.Visible = true -- shows button
  327. end
  328. end
  329. end
  330. end)
  331. end
  332. coroutine.wrap(CSGLHP_fake_script)()
  333. local function ELPCZ_fake_script() -- Main.Dragify
  334. local script = Instance.new('LocalScript', Main)
  335.  
  336. local UIS = game:GetService("UserInputService")
  337. function dragify(Frame)
  338. dragToggle = nil
  339. local dragSpeed = 0
  340. dragInput = nil
  341. dragStart = nil
  342. local dragPos = nil
  343. function updateInput(input)
  344. local Delta = input.Position - dragStart
  345. local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  346. game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.25), {Position = Position}):Play()
  347. end
  348. Frame.InputBegan:Connect(function(input)
  349. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  350. dragToggle = true
  351. dragStart = input.Position
  352. startPos = Frame.Position
  353. input.Changed:Connect(function()
  354. if input.UserInputState == Enum.UserInputState.End then
  355. dragToggle = false
  356. end
  357. end)
  358. end
  359. end)
  360. Frame.InputChanged:Connect(function(input)
  361. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  362. dragInput = input
  363. end
  364. end)
  365. game:GetService("UserInputService").InputChanged:Connect(function(input)
  366. if input == dragInput and dragToggle then
  367. updateInput(input)
  368. end
  369. end)
  370. end
  371.  
  372. dragify(script.Parent)
  373. end
  374. coroutine.wrap(ELPCZ_fake_script)()
  375.  
Add Comment
Please, Sign In to add comment