notJahh

Marvellous Playground INF Webs (spiderman)

Aug 24th, 2025
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.89 KB | None | 0 0
  1. local Activater = false
  2.  
  3. game:GetService("UserInputService").InputBegan:Connect(function(inp, typing)
  4.     if typing == false then
  5.         if inp.KeyCode == Enum.KeyCode.B then
  6.             if Activater == false then
  7.                 Activater = true
  8.             elseif Activater == true then
  9.                 Activater = false
  10.             end
  11.         end
  12.     end
  13. end)
  14.  
  15. game:GetService("RunService").Heartbeat:Connect(function()
  16.     if Activater == true then
  17.         game:GetService("ReplicatedStorage").Characters.SpiderMan.Remotes.TrippleShot:FireServer()
  18.         task.wait(0.3)
  19.  
  20.     else
  21.  
  22.     end
  23. end)
  24.  
  25. local Notification = Instance.new("ScreenGui")
  26. local Frame = Instance.new("Frame")
  27. local TextLabel = Instance.new("TextLabel")
  28. local UICorner = Instance.new("UICorner")
  29. local Frame_2 = Instance.new("Frame")
  30. local UICorner_2 = Instance.new("UICorner")
  31. local Frame_3 = Instance.new("Frame")
  32. local TextButton = Instance.new("TextButton")
  33.  
  34. Notification.Name = "Notification"
  35. Notification.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  36. Notification.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  37. Notification.IgnoreGuiInset = true
  38. Notification.ResetOnSpawn = false
  39.  
  40. Frame.Parent = Notification
  41. Frame.BackgroundColor3 = Color3.fromRGB(22, 24, 26)
  42. Frame.BorderSizePixel = 0
  43. Frame.Position = UDim2.new(0.862713695, 0, 0.913538158, 0)
  44. Frame.Size = UDim2.new(0.130341887, 0, 0.0728100091, 0)
  45.  
  46. TextLabel.Parent = Frame
  47. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. TextLabel.BackgroundTransparency = 1.000
  49. TextLabel.BorderSizePixel = 0
  50. TextLabel.Position = UDim2.new(0.140638739, 0, 0.119329877, 0)
  51. TextLabel.Size = UDim2.new(0.716335654, 0, 0.75802201, 0)
  52. TextLabel.Font = Enum.Font.Gotham
  53. TextLabel.Text = "Be Miles morales and press B to start!"
  54. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  55. TextLabel.TextScaled = true
  56. TextLabel.TextSize = 14.000
  57. TextLabel.TextWrapped = true
  58.  
  59. UICorner.CornerRadius = UDim.new(0.200000003, 0)
  60. UICorner.Parent = Frame
  61.  
  62. Frame_2.Parent = Frame
  63. Frame_2.BackgroundColor3 = Color3.fromRGB(14, 16, 17)
  64. Frame_2.BorderSizePixel = 0
  65. Frame_2.Position = UDim2.new(0.88524586, 0, 0, 0)
  66. Frame_2.Size = UDim2.new(0.11491812, 0, 1.00000012, 0)
  67.  
  68. UICorner_2.CornerRadius = UDim.new(0.400000006, 0)
  69. UICorner_2.Parent = Frame_2
  70.  
  71. Frame_3.Parent = Frame_2
  72. Frame_3.BackgroundColor3 = Color3.fromRGB(14, 16, 17)
  73. Frame_3.BorderSizePixel = 0
  74. Frame_3.Position = UDim2.new(-1.10771471e-05, 0, 0, 0)
  75. Frame_3.Size = UDim2.new(0.407929778, 0, 1, 0)
  76.  
  77. TextButton.Parent = Frame
  78. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  79. TextButton.BackgroundTransparency = 1.000
  80. TextButton.BorderSizePixel = 0
  81. TextButton.Position = UDim2.new(0.897540927, 0, 0.203125015, 0)
  82. TextButton.Size = UDim2.new(0.086065568, 0, 0.59375006, 0)
  83. TextButton.Font = Enum.Font.Gotham
  84. TextButton.Text = "X"
  85. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  86. TextButton.TextScaled = true
  87. TextButton.TextSize = 14.000
  88. TextButton.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment