Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local localplayer = game.Players.LocalPlayer
- game.StarterGui:SetCore("SendNotification", {
- Title = "wutdahell510's most stupidest script yet😭🙏",
- Text = "hey... " .. localplayer.Name .. ", this is a stupid script trust me lol",
- Duration = 2
- })
- local gui = Instance.new("ScreenGui")
- gui.Parent = game.CoreGui
- local frame = Instance.new("Frame")
- frame.Parent = gui
- frame.Size = UDim2.new(0.3, 0, 0.3, 0)
- frame.Position = UDim2.new(0.35, 0, 0.35, 0)
- frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- frame.BorderSizePixel = 2
- frame.Active = true
- frame.Draggable = true
- local title = Instance.new("TextLabel")
- title.Parent = frame
- title.Size = UDim2.new(1, 0, 0.2, 0)
- title.Position = UDim2.new(0, 0, 0, 0)
- title.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.Text = "Stupid Script"
- title.Font = Enum.Font.SourceSansBold
- title.TextSize = 20
- local button = Instance.new("TextButton")
- button.Parent = frame
- button.Size = UDim2.new(0.8, 0, 0.3, 0)
- button.Position = UDim2.new(0.1, 0, 0.5, 0)
- button.BackgroundColor3 = Color3.fromRGB(0, 100, 255)
- button.TextColor3 = Color3.fromRGB(255, 255, 255)
- button.Text = "Sword"
- button.Font = Enum.Font.SourceSansBold
- button.TextSize = 20
- button.MouseButton1Click:Connect(function()
- local plr = game.Players.LocalPlayer
- local sword = game:GetService("ReplicatedStorage"):FindFirstChild("ClassicSword") or game:GetService("ServerStorage"):FindFirstChild("ClassicSword")
- if sword then
- local clone = sword:Clone()
- clone.Parent = plr.Backpack
- else
- plr:Kick("Nigga, I think that's enough screen time.")
- end
- end)