-- Kameron Bot with 74 Commands -- Created with ❤️ for kmoney local Players = game:GetService("Players") local player = Players.LocalPlayer -- Create the GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "KameronBotGUI" screenGui.Parent = player:WaitForChild("PlayerGui") -- Create a Main Frame local mainFrame = Instance.new("ScrollingFrame") mainFrame.Size = UDim2.new(0.4, 0, 0.7, 0) -- 40% width, 70% height mainFrame.Position = UDim2.new(0.3, 0, 0.15, 0) -- Centered mainFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 70) -- Dark blue mainFrame.BorderSizePixel = 2 mainFrame.CanvasSize = UDim2.new(0, 0, 5, 0) -- Adjust scroll size mainFrame.ScrollBarThickness = 10 mainFrame.Parent = screenGui -- Add a Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0.1, 0) -- 10% of the height title.Position = UDim2.new(0, 0, 0, 0) -- Top of the frame title.BackgroundColor3 = Color3.fromRGB(255, 105, 180) -- Pink title.Text = "Kameron Bot" title.Font = Enum.Font.SourceSansBold title.TextSize = 24 title.TextColor3 = Color3.new(1, 1, 1) -- White title.Parent = mainFrame -- List of 74 Commands local commands = { {name = "!hello", action = function() print("Hello, " .. player.Name .. "!") end}, {name = "!joke", action = function() print("Why don't skeletons fight? They don't have the guts!") end}, {name = "!dance", action = function() print(player.Name .. " starts dancing!") end}, {name = "!weather", action = function() print("Sunny with a chance of Roblox fun!") end}, {name = "!tip", action = function() print("Remember to save your game!") end}, {name = "!stats", action = function() print("Level 5, XP 1200, Coins 300.") end}, {name = "!quote", action = function() print("The only limit is your imagination!") end}, {name = "!fact", action = function() print("Did you know? Roblox was created in 2004!") end}, {name = "!time", action = function() print("The current time is: " .. os.date("%X")) end}, {name = "!help", action = function() print("Available commands: !hello, !joke, !dance, and more!") end}, {name = "!bye", action = function() print("Goodbye! See you soon!") end}, {name = "!say", action = function() print("Kameron Bot says hi!") end}, {name = "!sing", action = function() print("La la la! I'm singing a song.") end}, {name = "!run", action = function() print(player.Name .. " starts running!") end},.action = function() print(player.Name .. " winks!") end}, {name = "!think", action = function() print(player.Name .. " starts thinking...") end}, {name = "!pose", action = function() print(player.Name .. " strikes a pose!") end}, {name = "!sleep", action = function() print(player.Name .. " falls asleep.") end}, {name = "!runfast", action = function() print(player.Name .. " runs really fast!") end}, {name = "!whistle", action = function() print(player.Name .. " whistles a tune!") end}, {name = "!point", action = function() print(player.Name .. " points ahead!") end}, {name = "!jumpHigh", action = function() print(player.Name .. " jumps super high!") end}, {name = "!swim", action = function() print(player.Name .. " swims in the water!") end},l {name = "!fire", action = function() print(player.Name .. " lights a fire!") end}, {name = "!ice", action = function() print(player.Name .. " conjures ice magic!") end}, {name = "!robot", action = function() print("Beep boop! I'm Kameron Bot.") end}, {name = "!dance2", action = function() print(player.Name .. " performs another dance move!") end}, {name = "!piano", action = function() print(player.Name .. " plays a piano tune.") end}, {name = "!greet", action = function() print(player.Name .. " greets everyone!") end}, { Print("Your IP has been logged for skidding. We have took a Picture from your camera on your device, there is all types of malware in this script. Don't skid.") = function() print("Surprise! Something exciting happened.") end}, {name = "!king", action = function() print(player.Name .. " is crowned the King!") end}, {name = "!queen", action = function() print(player.Name .. " is crowned the Queen!") end}, {name = "!cat", action = function() print("Meow! A cat appears.") end}, {name = "!dog", action = function() print("Woof! A dog runs by.") end}, {name = "!fish", action = function() print("Blub! A fish swims past.") end}, {name = "!treasure", action = function() print(player.Name .. " discovers a hidden treasure!") end}, {name = "!sword", action = function() print(player.Name .. " wields a shiny sword!") end}, {name = "!shield2", action = function() print(player.Name .. " blocks with a shield.") end}, {name = "!magic", action = function() print(player.Name .. " casts a magic spell!") end}, {name = "!win", action = function() print(player.Name .. " wins the game!") end}, {name = "!lose", action = function() print(player.Name .. " loses gracefully!") end} } -- Function to create a button for each command local function createButton(parent, command, position) local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0.05, 0) -- 80% width, 5% height button.Position = position button.BackgroundColor3 = Color3.fromRGB(135, 206, 250) -- Light blue button.Text = command.name button.Font = Enum.Font.SourceSans button.TextSize = 20 button.TextColor3 = Color3.new(0, 0, 0) -- Black button.Parent = parent button.MouseButton