Thecodeeasar

Nigga i don't really fucking care about this script it's random asf

Feb 8th, 2025 (edited)
18
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.67 KB | None | 0 0
  1. local localplayer = game.Players.LocalPlayer
  2.  
  3. game.StarterGui:SetCore("SendNotification", {
  4.     Title = "wutdahell510's most stupidest script yet😭🙏",
  5.     Text = "hey... " .. localplayer.Name .. ", this is a stupid script trust me lol",
  6.     Duration = 2
  7. })
  8.  
  9. local gui = Instance.new("ScreenGui")
  10. gui.Parent = game.CoreGui
  11.  
  12. local frame = Instance.new("Frame")
  13. frame.Parent = gui
  14. frame.Size = UDim2.new(0.3, 0, 0.3, 0)
  15. frame.Position = UDim2.new(0.35, 0, 0.35, 0)
  16. frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  17. frame.BorderSizePixel = 2
  18. frame.Active = true
  19. frame.Draggable = true
  20.  
  21. local title = Instance.new("TextLabel")
  22. title.Parent = frame
  23. title.Size = UDim2.new(1, 0, 0.2, 0)
  24. title.Position = UDim2.new(0, 0, 0, 0)
  25. title.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  26. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  27. title.Text = "Stupid Script"
  28. title.Font = Enum.Font.SourceSansBold
  29. title.TextSize = 20
  30.  
  31. local button = Instance.new("TextButton")
  32. button.Parent = frame
  33. button.Size = UDim2.new(0.8, 0, 0.3, 0)
  34. button.Position = UDim2.new(0.1, 0, 0.5, 0)
  35. button.BackgroundColor3 = Color3.fromRGB(0, 100, 255)
  36. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  37. button.Text = "Sword"
  38. button.Font = Enum.Font.SourceSansBold
  39. button.TextSize = 20
  40.  
  41. button.MouseButton1Click:Connect(function()
  42.     local plr = game.Players.LocalPlayer
  43.     local sword = game:GetService("ReplicatedStorage"):FindFirstChild("ClassicSword") or game:GetService("ServerStorage"):FindFirstChild("ClassicSword")
  44.     if sword then
  45.         local clone = sword:Clone()
  46.         clone.Parent = plr.Backpack
  47.     else
  48.         plr:Kick("Nigga, I think that's enough screen time.")
  49.     end
  50. end)
  51.  
Comments
Add Comment
Please, Sign In to add comment