Profile Picture

OwlGuru (Gaming LV)

Reputation: 0 [rate]

Joined: Sep, 2021

Last online:

I play minecraft and sometimes roblox with cheats

Bio

I use C# and Lua to make shi

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Created a new thread : Does anyone have an open source the mimic monster esp script?


The title. I need one for testing my own ui library and the mimic is currently a game I like very much.

Replied to thread : [Help] Problem with FocusLost with textboxes


@_realnickk Doesn't work sadly, it doesn print anything when focus is lost. Any ideas why?

Created a new thread : [Help] Problem with FocusLost with textboxes


Hello, I am making a custom UI library and I have a problem with the FocusLost function. So I don't know how to get text when focuslost on the textbox. Here is my code:

-- Add text box
function OranguLib:AddTextBox(text)
        local TextBox = Instance.new("TextBox")
		local callback = callback or function() end
		
        TextBox.Parent = Container
		TextBox.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
		TextBox.BorderColor3 = Color3.fromRGB(255, 170, 0)
		TextBox.Size = UDim2.new(0, 200, 0, 50)
		TextBox.Font = Enum.Font.SourceSans
		TextBox.PlaceholderColor3 = Color3.fromRGB(117, 117, 117)
		TextBox.PlaceholderText = text or "Default placeholder"
		TextBox.Text = ""
		TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
		TextBox.TextSize = 14.000

		TextBox.Focused:Connect(function()
			TextBox.BorderColor3 = Color3.fromRGB(41, 255, 41)
		end)
		
		TextBox.FocusLost:Connect(function() -- doesnt work
			TextBox.BorderColor3 = Color3.fromRGB(255, 170, 0)
			pcall(callback, text)
		end)
    end

main:AddTextBox("Print Text", function(input) -- doesnt print input
    print(input)
end)

Created a new thread : [Help] How do I toggle Inf Jump?


Hello, I am using materiallua ui library and I can't seem to understand how to make a toggleable infinite jump. This is my code right now.

but the toggle off part doesn't work. I tried using seated and that didn't work too.

local InfiniteJumpEnabled;
PlayerPage.Toggle({
    Text = "Infinite Jump",
    Callback = function(value)
        InfiniteJumpEnabled = value
    end,
    Enabled = false
})

local Player = game:GetService("Players").LocalPlayer
game:GetService("UserInputService").JumpRequest:Connect(function()
     if InfiniteJumpEnabled then
         Player.Character:WaitForChild("Humanoid"):ChangeState("Jumping")
     else
        Player.Character:WaitForChild("Humanoid"):ChangeState("Standing")
     end
end)

 

Replied to thread : [Help] How do I set a theme for Ace Editor?


@SeizureSalad I am using C# Winforms. How do I use javascript with C#?

Replied to thread : [Help] How do I set a theme for Ace Editor?


@pepsi How do I make this work? I am using C# Visual Studio 2022 Winforms. Where do I put the code?

Created a new thread : [Help] How do I set a theme for Ace Editor?


Hello, so I am making an exploit and I need to change the theme for Ace Editor with a button. How do I do this exactly? I couldn't find any information on how to import js files or something like that. - Mark

Replied to thread : [Help] How to make a raw text checker?


@SirWeeb 
Do you mean like this?

    WebClient webClient = new WebClient();
    string mainUrl= myWebClient.DownloadString("https://pastebin.com/raw/vgnAskpa");
     
    if (mainUrl.Contains("1.2"))
    {
    // continue 
    }
    else
    {
    // give update message
    }

Created a new thread : [Help] How to make a raw text checker?


Hello, so I am currently developing an exploit and would like to know how do I make a version checker. What I mean by that is the exploit should check for a specific text in a github raw text file and if it is correct then continue. - Mark

Replied to thread : How to open a link in the browser?


@Kura I mean by opening a specific link in the browser. Is that possible in lua?

Created a new thread : How to open a link in the browser?


Hello, I am currently trying to make a roblox button that opens a link. Here is my script right now but I don't know how to make it open a link.

login_2.MouseButton1Down:Connect(function()
	-- open link
end)

Created a new thread : Winforms Panel Animation Problem


Hello, I have a problem with animating a panel. I am using Siticone in Winforms(because it's much more comfortable for me). So when I press a button it slides in a Setting Panel and then after 3640 miliseconds it changes the button to a diffrent one and when you press the new button it slides back in. But the problem is when I do this it works the first time but after it just doesn't work. Here is the code: https://pastebin.com/ihAzbg24

And here is the video of how it works and doesn't work https://files.fm/f/ycwpaht7q

Created a new thread : WeAreDevs API Suggestion


Suggestion. Add fireclickdetector. I don't know if its possible but probably it is :P

Created a new thread : How to fix API not working in C++?


Hello, I am currently remaking an exploit and I have a problem with using WRD API. It says this when I press Start to test the exploit. I use WPF .NET Framework https://prnt.sc/26op1yl

Created a new thread : How to make GUI button set a link to a textbox


Hello, I am making an internal ui gui with a script hub and I need a way to make like when I press a button it sets a textboxs text to a link, but this gives me an error bc the script has a link it. Any fixes it?

Button1.MouseButton1Down:Connect(function()
	ImageLab.Image = "rbxassetid://8594319778"
	TextLabel_2.Text = "Dex Explorer"
	wait(5)
	ScriptHubBox.Text = "loadstring(game:HttpGet("https://pastebin.com/raw/WWrr7VUL"))()"
end)